diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-09-21 12:44:34 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-09-21 12:44:34 -0400 |
| commit | 709accc8e4f6dc3c21fc9b55e9fcc31559c68472 (patch) | |
| tree | 924f41bd3047921da27a999026a1be0f7b35b5ea /plugin/rebinds.vim | |
| parent | 314989ba7e969d353aa3a96454b03c2f5ff6511b (diff) | |
| download | vim-cfg-709accc8e4f6dc3c21fc9b55e9fcc31559c68472.tar.gz vim-cfg-709accc8e4f6dc3c21fc9b55e9fcc31559c68472.tar.xz | |
Re-arrange the vim configuration
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> |
