Skip to content

Instantly share code, notes, and snippets.

@deepankarb
Last active November 6, 2017 14:27
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 deepankarb/d41eab6543f26fa654bc72550f03c4f7 to your computer and use it in GitHub Desktop.
Save deepankarb/d41eab6543f26fa654bc72550f03c4f7 to your computer and use it in GitHub Desktop.
My vim rc
execute pathogen#infect()
syntax on
filetype plugin indent on
set hlsearch
set tabstop=4
set ai
set nu
" 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