aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-07-22 00:09:26 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-07-22 00:09:26 +1200
commitdfe7baed9a6812b1afe5f5311eae197338a80265 (patch)
tree63d18a70c787b3491b27bf12930e40fa2cd79b37 /vim/vimrc
parentRespect VimL convention (diff)
downloaddotfiles-dfe7baed9a6812b1afe5f5311eae197338a80265.tar.gz
dotfiles-dfe7baed9a6812b1afe5f5311eae197338a80265.zip
Missed an indent fix
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/vim/vimrc b/vim/vimrc
index e440d4c7..426394ba 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -403,10 +403,10 @@ if !strlen($SUDO_USER) && has('unix') && has('persistent_undo')
" Don't track changes to sensitive files
if has('autocmd')
augroup undoskip
- autocmd!
- silent! autocmd BufWritePre
- \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/*
- \ setlocal noundofile
+ autocmd!
+ silent! autocmd BufWritePre
+ \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/*
+ \ setlocal noundofile
augroup END
endif
endif