Updated Haskell setting from 8 spaces to 4

This commit is contained in:
Serĉanto de Scio 2016-02-18 12:05:20 +10:00
parent f7cc11173a
commit 0606226c46

5
.vimrc
View file

@ -38,9 +38,10 @@ autocmd BufNewFile,BufFilePre,BufRead *.rst :call ReStructuredSettings()
" Settings for my Haskell environment: " Settings for my Haskell environment:
function! HaskellSettings() function! HaskellSettings()
set tabstop=8 set tabstop=4
set shiftwidth=8 set shiftwidth=4
set expandtab set expandtab
set textwidth=79
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.hs :call HaskellSettings() autocmd BufNewFile,BufFilePre,BufRead *.hs :call HaskellSettings()