summaryrefslogtreecommitdiff
path: root/misc/dotfiles/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'misc/dotfiles/vimrc')
-rw-r--r--misc/dotfiles/vimrc9
1 files changed, 6 insertions, 3 deletions
diff --git a/misc/dotfiles/vimrc b/misc/dotfiles/vimrc
index ac02df6..3dd8336 100644
--- a/misc/dotfiles/vimrc
+++ b/misc/dotfiles/vimrc
@@ -7,14 +7,14 @@ 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
-" 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
@@ -23,6 +23,9 @@ 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
+
" Disable incremental search.
set noincsearch