Skip to content

Instantly share code, notes, and snippets.

@sergio1990
Created July 31, 2017 13:54
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 sergio1990/df72bde3c1012daaee1b2cccfdbe4bcd to your computer and use it in GitHub Desktop.
Save sergio1990/df72bde3c1012daaee1b2cccfdbe4bcd to your computer and use it in GitHub Desktop.
Disable arrow keys in Vim
" Disable Arrow keys in Escape mode
map <up> <nop>
map <down> <nop>
map <left> <nop>
map <right> <nop>
" Disable Arrow keys in Insert mode
imap <up> <nop>
imap <down> <nop>
imap <left> <nop>
imap <right> <nop>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment