home / end fixed for visual mode, supertab for everything, not only python
This commit is contained in:
parent
017efc558b
commit
4aaedf640e
2 changed files with 6 additions and 6 deletions
|
@ -10,6 +10,7 @@ Plug 'junegunn/vim-plug'
|
|||
|
||||
" general plugins
|
||||
Plug 'directionalWindowResizer'
|
||||
Plug 'ervandew/supertab'
|
||||
Plug 'jeetsukumaran/vim-buffergator'
|
||||
Plug 'junegunn/vim-easy-align'
|
||||
Plug 'mhinz/vim-signify'
|
||||
|
@ -21,7 +22,6 @@ Plug 'vimwiki/vimwiki'
|
|||
" IDE liek, per filetype
|
||||
Plug 'neomake/neomake', { 'for': 'python' }
|
||||
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
||||
Plug 'ervandew/supertab', { 'for': 'python' }
|
||||
|
||||
" colorschemes
|
||||
Plug 'lifepillar/vim-solarized8'
|
||||
|
|
4
vimrc
4
vimrc
|
@ -49,8 +49,8 @@ nnoremap <Leader>l :setlocal list!<CR>
|
|||
nnoremap <Leader>c :setlocal cursorline!<CR>
|
||||
nnoremap <Leader>/ :nohls<CR>
|
||||
"home / end
|
||||
nnoremap H ^
|
||||
nnoremap L $
|
||||
noremap H ^
|
||||
noremap L $
|
||||
"copy to / paste from clipboard
|
||||
vmap <Leader>y "+y
|
||||
vmap <Leader>d "+d
|
||||
|
|
Loading…
Reference in a new issue