[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
" Tab control
set smarttab
set expandtab
set shiftwidth=4
set tabstop=4
set softtabstop=4
set noexpandtab " insert tabs rather than spaces for <Tab>
set smarttab " tab respects 'tabstop', 'shiftwidth', and 'softtabstop'
set tabstop=4 " the visible width of tabs
set softtabstop=4 " edit as if the tabs are 4 characters wide
set shiftwidth=4 " number of spaces to use for indent and unindent
set shiftround " round indent to a multiple of 'shiftwidth'
" if has('mouse')
" set mouse=a