Skip to content

Instantly share code, notes, and snippets.

@waylan
Created August 13, 2013 16:12
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 waylan/6222806 to your computer and use it in GitHub Desktop.
Save waylan/6222806 to your computer and use it in GitHub Desktop.
A very basic .vimrc file
" whitespace
set tabstop=4
set shiftwidth=4
set smarttab
set expandtab
set softtabstop=4
set autoindent
" Search settings
set incsearch
set ignorecase
set smartcase
" colors
syntax on
set background=dark
" smartindent for python files
autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment