Fixed an issue with mru plugin and renamed override_vimrc to install_vimrc

This commit is contained in:
amix
2012-05-29 16:24:34 -04:00
parent 8acdcd787d
commit 0f81530f8f
4 changed files with 1159 additions and 1 deletions

16
install_vimrc.sh Normal file
View File

@@ -0,0 +1,16 @@
cd ~/.vim_runtime
git submodule init
git submodule update
echo 'set runtimepath=~/.vim_runtime,~/.vim_runtime/after,\$VIMRUNTIME
source ~/.vim_runtime/vimrcs/basic.vim
source ~/.vim_runtime/vimrcs/filetypes.vim
source ~/.vim_runtime/vimrcs/plugins_config.vim
source ~/.vim_runtime/vimrcs/extended.vim
if filereadable("~/.vim_runtime/vimrcs/my_configs.vim")
source ~/.vim_runtime/vimrcs/my_configs.vim
endif' > ~/.vimrc
echo "Installed the Ultimate Vim configuration successfully! Enjoy :-)"