Added Mutt
This commit is contained in:
parent
8c0ee4b504
commit
d3dbc7c975
13
.vimrc
13
.vimrc
|
@ -5,7 +5,9 @@ set smartindent
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
set expandtab
|
set expandtab
|
||||||
|
set t_Co=256 " use 265 colors in vim
|
||||||
syntax enable
|
syntax enable
|
||||||
|
colorscheme solarized
|
||||||
match ErrorMsg '\s\+$'
|
match ErrorMsg '\s\+$'
|
||||||
|
|
||||||
" Set up the status line so it's colored and always on
|
" Set up the status line so it's colored and always on
|
||||||
|
@ -101,3 +103,14 @@ function! PythonSettings()
|
||||||
set spell!
|
set spell!
|
||||||
endfunction
|
endfunction
|
||||||
autocmd BufNewFile,BufFilePre,BufRead *.py :call PythonSettings()
|
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()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue