diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-11-06 16:07:25 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-11-06 16:07:25 +0100 |
commit | f31696bdcbe5399ccf1a8559d32e13716095967b (patch) | |
tree | b40166636f37cb88fe00320451eb463e63ae1704 /.config | |
parent | 99ae247eacf35697c607d880675d910fcce90ae3 (diff) |
[yadm+update] implementing lazy.nvim update routine
Diffstat (limited to '.config')
-rwxr-xr-x | .config/yadm/bootstrap | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/.config/yadm/bootstrap b/.config/yadm/bootstrap index 9be53e9..4ca1086 100755 --- a/.config/yadm/bootstrap +++ b/.config/yadm/bootstrap @@ -15,15 +15,8 @@ fi # vim # # -PLUG="$HOME/.local/share/nvim/site/autoload/plug.vim" - -if [ ! -f "$PLUG" ]; then - curl -fLo $PLUG --create-dirs \ - https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim -fi - if command -v nvim > /dev/null 2>&1; then - nvim '+PlugUpdate' '+PlugClean!' '+PlugUpdate' '+qall' + nvim --headless '+Lazy! sync' '+qall' fi |