mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
update_plugins.py
This commit is contained in:
parent
8c5e53faba
commit
561611510c
@ -70,7 +70,7 @@ Just do a git rebase!
|
||||
```sh
|
||||
cd ~/.vim_runtime
|
||||
git pull --rebase
|
||||
python update_plugins.py # use python3 if python is unavailable
|
||||
python update_plugins.py || python3 update_plugins.py # use python3 if python is unavailable
|
||||
```
|
||||
|
||||
## Some screenshots
|
||||
|
@ -3,6 +3,7 @@ set -e
|
||||
|
||||
echo 'Installing Awesome Vim from '$1
|
||||
cd $1
|
||||
python update_plugins.py || python3 update_plugins.py
|
||||
|
||||
VIMRC="\" DO NOT EDIT THIS FILE
|
||||
\" Add your own customizations in $1/my_configs.vim
|
||||
|
@ -17,4 +17,5 @@ try
|
||||
catch
|
||||
endtry' > ~/.vimrc
|
||||
|
||||
python update_plugins.py || python3 update_plugins.py
|
||||
echo "Installed the Ultimate Vim configuration successfully! Enjoy :-)"
|
||||
|
@ -3,4 +3,5 @@ set -e
|
||||
|
||||
cd ~/.vim_runtime
|
||||
cat ~/.vim_runtime/vimrcs/basic.vim > ~/.vimrc
|
||||
python update_plugins.py || python3 update_plugins.py
|
||||
echo "Installed the Basic Vim configuration successfully! Enjoy :-)"
|
||||
|
Loading…
Reference in New Issue
Block a user