Created
May 4, 2013 07:47
-
-
Save bodokaiser/5516701 to your computer and use it in GitHub Desktop.
This is my vimrc file which enables syntax, column ruler, four spaces auto-indent on all files except for html where I use two spaces.
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
syntax on | |
filetype plugin indent on | |
:set nu | |
:set cc=80 | |
:set smartindent | |
:set tabstop=4 | |
:set shiftwidth=4 | |
:set expandtab | |
autocmd FileType html set tabstop=2 | set shiftwidth=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment