Skip to content

Instantly share code, notes, and snippets.

@xcession
Forked from ashwin/DisableArrowKeys.vim
Created March 30, 2020 08:46
Show Gist options
  • Save xcession/423fe96412b7226efde7c510188dd99c to your computer and use it in GitHub Desktop.
Save xcession/423fe96412b7226efde7c510188dd99c to your computer and use it in GitHub Desktop.
Disable arrow keys in Vim
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