diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2011-09-07 11:40:58 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2011-09-07 11:40:58 +1200 |
commit | c084131c10a39fc93e32905aaa8ac9361a2f0b45 (patch) | |
tree | 9d2b39661026f87947888c874404a58e81e04355 /vim | |
parent | Upgraded pathogen (diff) | |
download | dotfiles-c084131c10a39fc93e32905aaa8ac9361a2f0b45.tar.gz dotfiles-c084131c10a39fc93e32905aaa8ac9361a2f0b45.zip |
Some compatibility tweaks
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -2,8 +2,8 @@ set nocompatible " Plugins -call pathogen#infect() -call pathogen#helptags() +silent! call pathogen#infect() +silent! call pathogen#helptags() " Filetypes if has("autocmd") @@ -15,7 +15,10 @@ endif " Colors if has("syntax") syntax enable - colorscheme dessert + try + colorscheme dessert + catch + endtry endif " Command |