diff options
Diffstat (limited to 'misc/dotfiles')
-rw-r--r-- | misc/dotfiles/vimrc | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/misc/dotfiles/vimrc b/misc/dotfiles/vimrc index 3dd8336..2b78b0e 100644 --- a/misc/dotfiles/vimrc +++ b/misc/dotfiles/vimrc @@ -7,25 +7,28 @@ syntax on " Expand tabs to spaces. set expandtab -" In Makefiles, don't expand tabs to spaces, since we need the actual tabs. -autocmd FileType make setlocal noexpandtab - " Use four-space indentation by default. set tabstop=4 set softtabstop=4 set shiftwidth=4 +" Limit text width. +set textwidth=79 + +" In Makefiles, don't expand tabs to spaces, since we need the actual tabs. +autocmd FileType make setlocal noexpandtab + " Use two-space indentation for yaml files. autocmd FileType yaml setlocal tabstop=2 autocmd FileType yaml setlocal softtabstop=2 autocmd FileType yaml setlocal shiftwidth=2 -" Limit text width. -set textwidth=79 - " Limit width to 72 columns for git commit messages. autocmd FileType gitcommit setlocal textwidth=72 +" And mail messages as well. +autocmd FileType mail setlocal textwidth=72 + " Disable incremental search. set noincsearch |