Added settings for ReStructured Text

This commit is contained in:
Serĉanto de Scio 2016-02-15 14:47:30 +10:00
parent 01dec247dc
commit cec2116fec

6
.vimrc
View file

@ -29,6 +29,12 @@ function! MarkdownSettings()
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.mdwn :call MarkdownSettings() autocmd BufNewFile,BufFilePre,BufRead *.mdwn :call MarkdownSettings()
" My ReStructured Text environment
function! ReStructuredSettings()
set textwidth=79
endfunction
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=8