Initial import of the vim bits from classic.

This commit is contained in:
2014-01-26 15:31:58 -05:00
parent d38552ea74
commit 64f9edf488
9 changed files with 255 additions and 0 deletions

38
vim/vimrc.defkeymaps Normal file
View File

@ -0,0 +1,38 @@
" Key Mappings
map <PageUp> <C-B>
map <PageDown> <C-F>
" "insert"
map <ESC>[2~ i
map <ESC>[2~ <insert>
" "home"
map <ESC>[1~ ^
map <ESC>[1~ 0
map <ESC>[1~ <Home>
" "pgup"
map <ESC>[5~ <C-B>
map <ESC>[5~ <PageUp>
" "delete"
map <ESC>[3~ x
map <ESC>[3~ <Del>
" "end"
map <ESC>[4~ $
map <ESC>[4~ <END>
" "pgdn"
map <ESC>[6~ <C-F>
map <ESC>[6~ <PageDown>
" "UP", "Down", "LEFT", and "RIGHT" arrow keys
map <ESC>[A <Up>
map <ESC>[B <Down>
map <ESC>[C <Right>
map <ESC>[D <Left>
imap <ESC>[A <Up>
imap <ESC>[B <Down>
imap <ESC>[C <Right>
imap <ESC>[D <Left>