blob: fb143243d3b7b67fef4e22b6347c23de249c03c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
" 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>
|