vimrc: uncomment automatic tabs to spaces

it made occasional ZNC pull requests too difficult.
This commit is contained in:
Mikaela Suomalainen 2014-12-20 12:48:59 +02:00
parent 79924dc542
commit 4cf47c1c6a
1 changed files with 3 additions and 3 deletions

6
vimrc
View File

@ -99,9 +99,9 @@ autocmd BufReadPost *
" End of copied from https://raw.githubusercontent.com/ProgVal/misc/master/dotfiles/.vimrc
" If we have tabs, remove them
if has("autocmd")
au BufReadPost * if &modifiable | retab | endif
endif
"if has("autocmd")
" au BufReadPost * if &modifiable | retab | endif
"endif
" dos2unix ^M copied from http://stackoverflow.com/a/5361702/1675649
fun! Dos2unixFunction()