Mercurial > dotfiles
comparison .vimrc @ 3:1921c0b85a82
Handy keybindings.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 26 Nov 2008 18:47:20 -0600 |
parents | c30d68fbd368 |
children | d30122122d4f |
comparison
equal
deleted
inserted
replaced
2:cc09fbf53d4d | 3:1921c0b85a82 |
---|---|
21 | 21 |
22 set scrolloff=3 " keep 3 lines of context | 22 set scrolloff=3 " keep 3 lines of context |
23 | 23 |
24 set incsearch " search as you type | 24 set incsearch " search as you type |
25 | 25 |
26 | 26 " buffer switching/management, might as well use those keys for something |
27 " useful | |
28 map <Right> :bnext<CR> | |
29 imap <Right> <ESC>:bnext<CR> | |
30 map <Left> :bprev<CR> | |
31 imap <Left> <ESC>:bprev<CR> | |
32 map <Del> :bd<CR> | |
27 | 33 |
28 filetype plugin indent on | 34 filetype plugin indent on |
29 colorscheme gothic | 35 colorscheme gothic |
30 | 36 |
31 | 37 |