Last active
June 6, 2016 12:52
-
-
Save ruicovelo/9a25caf89e28eeaa7844d18912930ddc to your computer and use it in GitHub Desktop.
My default .vimrc (work in progress)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# defaults | |
syntax on | |
filetype plugin indent on | |
set shiftwidth=2 | |
set softtabstop=2 | |
set tabstop=2 | |
# per filetype | |
autocmd filetype python setlocal ts=4 sw=4 expandtab smartindent | |
autocmd filetype ruby setlocal ts=2 sw=2 expandtab smartindent | |
autocmd filetype html setlocal ts=2 sw=2 expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment