Browse Source

vimrc match inputrc

main
pvincent 3 days ago
parent
commit
2e4abb332e
  1. 18
      etc/vim/vimrc.rookie

18
etc/vim/vimrc.rookie

@ -2,12 +2,10 @@
" ---------------
" Move Along Words
inoremap <C-Left> B
inoremap <C-Right> W
inoremap <M-Left> b
inoremap <M-Right> w
nnoremap <M-Left> b
nnoremap <M-Right> w
inoremap <C-Left> b
inoremap <C-Right> w
inoremap <A-Left> B
inoremap <A-Right> W
" Move Along Paragraphs
inoremap <C-Up> {
@ -17,13 +15,13 @@ nnoremap <C-Down> }
" Delete Words
inoremap <C-BS> db
inoremap <M-BS> d0
inoremap <A-BS> d0
inoremap <C-Del> dw
inoremap <M-Del> d$
inoremap <A-Del> d$
nnoremap <C-BS> db
nnoremap <M-BS> d0
nnoremap <A-BS> d0
nnoremap <C-Del> dw
nnoremap <M-Del> d$
nnoremap <A-Del> d$
" Select
nnoremap <S-Left> vh

Loading…
Cancel
Save