Skip to content

Instantly share code, notes, and snippets.

@shadowhand
Created October 19, 2014 13:32
Show Gist options
  • Save shadowhand/bddda0cbc24e836990b2 to your computer and use it in GitHub Desktop.
Save shadowhand/bddda0cbc24e836990b2 to your computer and use it in GitHub Desktop.
Disable arrow keys in vim
" stop using arrow keys!
inoremap <Up> <NOP>
inoremap <Down> <NOP>
inoremap <Left> <NOP>
inoremap <Right> <NOP>
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment