mirror of
1
0
Fork 0

Update install_awesome_vimrc.sh

Fix some small bugs and add some interesting things~
:-)
This commit is contained in:
Wrfly 2015-04-23 00:12:05 +08:00
parent 90a3d8124d
commit b81bd8b1ae
1 changed files with 6 additions and 1 deletions

View File

@ -12,6 +12,11 @@ source ~/.vim_runtime/my_configs.vim
catch
endtry' > ~/.vimrc
type ctags >/dev/null 2>&1 || { sudo apt-get install ctags; }
#For Ubuntu users
type ctags >/dev/null 2>&1 || { echo `uname -a` | grep [uU]buntu >/dev/null && echo "Install ctags"; sudo apt-get install ctags; }
#For Centos users
type ctags >/dev/null 2>&1 || { echo `uname -a` | grep [Cc]entos >/dev/null && echo "Install ctags"; sudo yum install ctags; }
#Just for fun~
echo -n "Loading..." ;sleep 1;echo -n ".";sleep 1;echo -n ".";sleep 1;echo "."
echo "Installed the Ultimate Vim configuration successfully! Enjoy :-)"