Skip to content

Instantly share code, notes, and snippets.

@Kirens
Created December 24, 2018 08:51
Show Gist options
  • Save Kirens/dc7ce82cbd9bef0bff37e66fa619f42c to your computer and use it in GitHub Desktop.
Save Kirens/dc7ce82cbd9bef0bff37e66fa619f42c to your computer and use it in GitHub Desktop.
Dissable arrow keys in vim
" I need to forget arrows
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
vnoremap <Up> <NOP>
vnoremap <Down> <NOP>
vnoremap <Left> <NOP>
vnoremap <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