Skip to content

Instantly share code, notes, and snippets.

@crittermike
Last active May 24, 2017 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save crittermike/758d8f309a3bef508c5d52b5404759d8 to your computer and use it in GitHub Desktop.
Save crittermike/758d8f309a3bef508c5d52b5404759d8 to your computer and use it in GitHub Desktop.
A .vimrc with the bare minimum baseline defaults
set backspace=2 " backspace in insert mode works like normal editor
set shiftwidth=2 " indent by 2 spaces when auto-indenting
set softtabstop=2 " indent by 2 spaces when hitting tab
syntax on " syntax highlighting
filetype indent on " activates indenting for files
set autoindent " auto indenting
set number " line numbers
colorscheme desert " colorscheme desert
set nobackup " get rid of anoying ~file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment