legacy-dotfiles/.vimrc

34 lines
844 B
VimL
Raw Normal View History

2010-12-05 12:44:54 +01:00
syntax on
2011-02-21 00:45:03 +01:00
set background:dark
colorscheme earendel
2010-12-05 12:44:54 +01:00
au BufRead ~/.mutt/temp/mutt-* set tw=72
au BufRead .git/*_EDITMSG set tw=72
2010-12-05 12:44:54 +01:00
autocmd FileType make setlocal noexpandtab
autocmd BufWritePre *.php :%s/\s\+$//e
" Highlight everything right of the 80th column
2011-03-01 18:45:27 +01:00
highlight rightMargin ctermfg=red guifg=red
2010-12-05 12:44:54 +01:00
autocmd BufWinEnter * let w:m1=matchadd('rightMargin', '\%>79v', -1)
" Highlight all trailing whitespace
highlight trailWhite ctermbg=darkgray guibg=darkgray
autocmd BufWinEnter * let w:m2=matchadd('trailWhite', '\s\+$', -1)
set expandtab
set number
set smartindent
2011-03-23 11:14:53 +01:00
set tabstop=2
set shiftwidth=2
2010-12-05 12:44:54 +01:00
set nowrap
" GUI settings
set guioptions-=m "remove menu bar
set guioptions-=T "remove toolbar
set guioptions-=r "remove right-hand scroll bar
set guifont=tamsyn\ 15
2010-12-05 12:44:54 +01:00
" Swap file location
set backupdir=/var/tmp//
set directory=/var/tmp//