From d3dbc7c975cba177d08cd5f5be0f8278577b24e5 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Fri, 26 Aug 2016 11:04:46 +1000 Subject: [PATCH] Added Mutt --- .vimrc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.vimrc b/.vimrc index 2a8acd2..dee7170 100644 --- a/.vimrc +++ b/.vimrc @@ -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() +