aboutsummaryrefslogtreecommitdiff
path: root/inc/rebinds.vim
blob: cacef6215f2e840d639257a000029aea9e706d2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>