Skip to content

Instantly share code, notes, and snippets.

@noomz
Created September 10, 2013 04:39
Show Gist options
  • Save noomz/6505056 to your computer and use it in GitHub Desktop.
Save noomz/6505056 to your computer and use it in GitHub Desktop.
set shiftwidth=2
set tabstop=2
set expandtab
set nu
set ai
set smartindent
map! <F2> <C-x><C-p>
if has("autocmd")
" Drupal *.module and *.install files.
augroup module
autocmd BufRead,BufNewFile *.module set filetype=php
autocmd BufRead,BufNewFile *.install set filetype=php
autocmd FileType python set tabstop=4|set shiftwidth=4|set expandtab
autocmd FileType php set tabstop=2|set shiftwidth=2|set expandtab
augroup END
endif
syntax on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment