diff options
author | Tharre <tharre3@gmail.com> | 2015-04-21 11:01:19 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-10-07 20:08:47 +0000 |
commit | 9ed4d1cfa3546143231958c4f75894ac907a1a56 (patch) | |
tree | c6f6550cce2e93f08929eabe82a5e529a75e8a5f /shell | |
parent | fb54d3799ad526719cb64bb57cac3ef7f54f300c (diff) | |
download | dotfiles-9ed4d1cfa3546143231958c4f75894ac907a1a56.tar.gz dotfiles-9ed4d1cfa3546143231958c4f75894ac907a1a56.tar.xz dotfiles-9ed4d1cfa3546143231958c4f75894ac907a1a56.zip |
vim: make sure everything is installed beforehand
Diffstat (limited to 'shell')
-rw-r--r-- | shell/_vimrc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/_vimrc b/shell/_vimrc index 5e83a39..68dffe8 100644 --- a/shell/_vimrc +++ b/shell/_vimrc @@ -57,7 +57,9 @@ filetype plugin indent on " If there are uninstalled bundles found on startup, " this will conveniently prompt you to install them. -NeoBundleCheck +if reinstall + NeoBundleInstall +endif " ----- general settings ----- set encoding=utf-8 |