Created
March 29, 2013 11:57
-
-
Save simonplend/5270424 to your computer and use it in GitHub Desktop.
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
" size of a hard tabstop | |
set tabstop=4 | |
" size of an 'indent' | |
set shiftwidth=4 | |
" a combination of spaces and tabs are used to simulate tab stops at a width | |
" other than the (hard)tabstop | |
set softtabstop=4 | |
" make 'tab' insert indents instead of tabs at the beginning of a line | |
set smarttab | |
" always uses spaces instead of tab characters | |
set expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment