1
0
mirror of https://github.com/amix/vimrc synced 2025-06-30 11:54:59 +08:00

Added basic and awesome install scripts

This commit is contained in:
amix
2012-05-29 16:33:20 -04:00
parent 3052a646e0
commit a75f80898f
2 changed files with 3 additions and 0 deletions

16
install_awesome_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 :-)"