Added Mutt

This commit is contained in:
Serĉanto de Scio 2016-08-26 11:04:46 +10:00
parent 8c0ee4b504
commit d3dbc7c975

13
.vimrc
View file

@ -5,7 +5,9 @@ set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set t_Co=256 " use 265 colors in vim
syntax enable
colorscheme solarized
match ErrorMsg '\s\+$'
" Set up the status line so it's colored and always on
@ -101,3 +103,14 @@ function! PythonSettings()
set spell!
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.py :call PythonSettings()
" My Mutt environment
function! MuttSettings()
set textwidth=79
set spell spelllang=en_au
set tabstop=4
set shiftwidth=4
set expandtab
endfunction
autocmd BufNewFile,BufFilePre,BufRead mutt-* :call MarkdownSettings()