Skip to content

Instantly share code, notes, and snippets.

@hectorperez
Created October 2, 2015 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hectorperez/91c501496f1b5ba3762f to your computer and use it in GitHub Desktop.
Save hectorperez/91c501496f1b5ba3762f to your computer and use it in GitHub Desktop.
disable arrow keys in Vim
Add to .vimrc:
nnoremap <up> <nop>
nnoremap <down> <nop>
nnoremap <left> <nop>
nnoremap <right> <nop>
inoremap <up> <nop>
inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment