Run update_plugins.py when installing vimrc
This commit is contained in:
parent
ffa28d1589
commit
5049353fd4
3 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,7 @@ set -e
|
||||||
|
|
||||||
echo 'Installing Awesome Vim from '$1
|
echo 'Installing Awesome Vim from '$1
|
||||||
cd $1
|
cd $1
|
||||||
|
python update_plugins.py || python3 update_plugins.py
|
||||||
|
|
||||||
VIMRC="\" DO NOT EDIT THIS FILE
|
VIMRC="\" DO NOT EDIT THIS FILE
|
||||||
\" Add your own customizations in $1/my_configs.vim
|
\" Add your own customizations in $1/my_configs.vim
|
||||||
|
|
|
@ -17,4 +17,5 @@ try
|
||||||
catch
|
catch
|
||||||
endtry' > ~/.vimrc
|
endtry' > ~/.vimrc
|
||||||
|
|
||||||
|
python update_plugins.py || python3 update_plugins.py
|
||||||
echo "Installed the Ultimate Vim configuration successfully! Enjoy :-)"
|
echo "Installed the Ultimate Vim configuration successfully! Enjoy :-)"
|
||||||
|
|
|
@ -3,4 +3,5 @@ set -e
|
||||||
|
|
||||||
cd ~/.vim_runtime
|
cd ~/.vim_runtime
|
||||||
cat ~/.vim_runtime/vimrcs/basic.vim > ~/.vimrc
|
cat ~/.vim_runtime/vimrcs/basic.vim > ~/.vimrc
|
||||||
|
python update_plugins.py || python3 update_plugins.py
|
||||||
echo "Installed the Basic Vim configuration successfully! Enjoy :-)"
|
echo "Installed the Basic Vim configuration successfully! Enjoy :-)"
|
||||||
|
|
Loading…
Reference in a new issue