Skip to content

Instantly share code, notes, and snippets.

@bjarneo
Last active August 29, 2015 14:17
Show Gist options
  • Save bjarneo/11aef9ef49b4f08f3070 to your computer and use it in GitHub Desktop.
Save bjarneo/11aef9ef49b4f08f3070 to your computer and use it in GitHub Desktop.
VIM
" Vim Cheat sheet
" http://vim.rtorr.com/
" If ctrl + s freezes your vim, use this config in .bashrc to disable sending xoff
" stty -ixon
" This command will remove trailing whitespace on save
autocmd BufWritePre *.* :%s/\s\+$//e
" Set line numbers
set number
" Disable arrow keys in insert mode
imap <up> <nop>
imap <down> <nop>
imap <left> <nop>
imap <right> <nop>
" Disable arrow keys in escape mode
map <up> <nop>
map <down> <nop>
map <left> <nop>
map <right> <nop>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment