Skip to content

Instantly share code, notes, and snippets.

@tonygaetani
Last active April 13, 2016 10:13
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 tonygaetani/12d94b36617f758fe91065756821a300 to your computer and use it in GitHub Desktop.
Save tonygaetani/12d94b36617f758fe91065756821a300 to your computer and use it in GitHub Desktop.
basic vimrc
" show syntax highlighting
syntax enable
" dark theme just like my heart
set background=dark
" show line numbers
set number
" re-enable backspace usage
set backspace=2
set backspace=indent,eol,start
" use 4 space charachters for indentation
set tabstop=4 softtabstop=0 shiftwidth=4 smarttab
" training wheels
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment