File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 2
2
- golang syntax support (thanks @torkale)
3
3
- josemarluedke/vim-rspec - lightweight Rspec runner for Vim
4
4
- girblade/vim-gitgutter - it diff in the gutter (sign column) and stages/reverts hunks
5
+ - backupskip for /private/tmp and ~/tmp.
6
+ skip backups on OSX temp dir, for crontab -e to properly work
5
7
6
8
* 2013-08-28
7
9
- fix startup echo messages redirect
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ call system('mkdir -vp ~/.backup/undo/ > /dev/null 2>&1')
79
79
set backupdir = ~/.backup,. " list of directories for the backup file
80
80
set directory = ~/.backup,~/tmp,. " list of directory names for the swap file
81
81
set nobackup " do not write backup files
82
+ set backupskip += ~/tmp/*,/private/tmp/* " skip backups on OSX temp dir, for crontab -e to properly work
82
83
set noswapfile " do not write .swp files
83
84
set undofile
84
85
set undodir = ~/.backup/undo/,~/tmp,.
You can’t perform that action at this time.
0 commit comments