Skip to content

Instantly share code, notes, and snippets.

@bwhaley
Created November 2, 2012 19:08
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 bwhaley/4003681 to your computer and use it in GitHub Desktop.
Save bwhaley/4003681 to your computer and use it in GitHub Desktop.
set nocompatible
syntax enable
set encoding=utf-8
set showcmd " display incomplete commands
filetype plugin indent on " load file type plugins + indentation
"" Whitespace
set nowrap " don't wrap lines
set tabstop=2 shiftwidth=2 " a tab is two spaces
set expandtab " use spaces, not tabs
set backspace=indent,eol,start " backspace through everything in insert mode
"" Searching
set hlsearch " highlight matches
set incsearch " incremental searching
set ignorecase " searches are case insensitive...
set smartcase " ... unless they contain at least one capital letter
set paste " paste cleanly
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment