Skip to content

Instantly share code, notes, and snippets.

@mmattax
Created April 4, 2014 15:12
Show Gist options
  • Save mmattax/9976722 to your computer and use it in GitHub Desktop.
Save mmattax/9976722 to your computer and use it in GitHub Desktop.
.vimrc
syntax enable
set number
set ruler
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set background=dark
set nohlsearch
au BufWritePost *.php !php -l %
let html_no_rendering = 1
autocmd BufWritePre *.py :%s/\s\+$//e
au BufEnter,BufRead *.py setlocal smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class,with
filetype indent on
au BufReadPost *.coffee setlocal tabstop=2 shiftwidth=2
au BufReadPost *.js setlocal tabstop=2 shiftwidth=2
au BufReadPost *.html setlocal tabstop=2 shiftwidth=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment