X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d2fb1a0af994162971379eb3ee9e02ec0ec7249d..75e33c719904b135279c74b946c98bcbe81a4a1b:/.vimrc diff --git a/.vimrc b/.vimrc index 369851e..a483050 100644 --- a/.vimrc +++ b/.vimrc @@ -1089,7 +1089,7 @@ set ar " directory " list of directories for the swap file " set dir=.,/home/madduck/tmp,/var/tmp,/tmp -set dir=.,~/tmp//,/var/tmp//,/tmp// +set dir=.,$TMPDIR//,/var/tmp//,/tmp// " swapfile " use a swap file for this buffer @@ -1448,10 +1448,6 @@ colorscheme madduck autocmd BufNewFile,BufRead /etc/logcheck/*.d*/* set tw=0 autocmd BufNewFile,BufRead /home/madduck/debian/pkg/logcheck/*/rulefiles/linux/*.d*/* set tw=0 -" display the git-diff --cached in window below commit -" assumes nosplitbelow set. Might want to use wincmd p otherwise -autocmd FileType gitcommit DiffGitCached | wincmd J - " jump to last known position in file (:he last-position-jump) autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"zz" | endif @@ -1462,6 +1458,8 @@ augroup listinsert autocmd InsertLeave * set list augroup end +source $VIMRUNTIME/macros/table.vim + if &cp | set nocp | endif let s:cpo_save=&cpo set cpo&vim