diff options
Diffstat (limited to 'plugin/rebinds.vim')
| -rw-r--r-- | plugin/rebinds.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugin/rebinds.vim b/plugin/rebinds.vim new file mode 100644 index 0000000..cacef62 --- /dev/null +++ b/plugin/rebinds.vim @@ -0,0 +1,14 @@ +" Keep the newbs from using arrow keys +inoremap <Left> <NOP> +inoremap <Right> <NOP> +inoremap <Up> <NOP> +inoremap <Down> <NOP> + +" map <C-n> :Lex<CR> +map <C-n> :NERDTreeToggle<CR> + +" To enable/disable the autocomplete dropdown +nmap <leader> [ :AcpDisable<CR> +nmap <leader> ] :AcpEnable<CR> + +nnoremap <F5> :GundoToggle<CR> |
