[vim] drinking the tab kool-aid

Settings copied from @bryanforbes
This commit is contained in:
Nick Nisi
2013-07-10 20:59:38 -05:00
parent f9f96a9387
commit a32c95cd63

View File

@@ -70,11 +70,12 @@ let g:mapleader = ","
set history=10000 set history=10000
" Tab control " Tab control
set smarttab set noexpandtab " insert tabs rather than spaces for <Tab>
set expandtab set smarttab " tab respects 'tabstop', 'shiftwidth', and 'softtabstop'
set shiftwidth=4 set tabstop=4 " the visible width of tabs
set tabstop=4 set softtabstop=4 " edit as if the tabs are 4 characters wide
set softtabstop=4 set shiftwidth=4 " number of spaces to use for indent and unindent
set shiftround " round indent to a multiple of 'shiftwidth'
" if has('mouse') " if has('mouse')
" set mouse=a " set mouse=a