From 307df21222316d35f32e1597824283797aa6a74c Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Wed, 15 Jan 2025 11:44:13 +0100 Subject: update --- .vim/pack/mvertes/install.sh | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to '.vim/pack') diff --git a/.vim/pack/mvertes/install.sh b/.vim/pack/mvertes/install.sh index 37b1784..fa4f35c 100755 --- a/.vim/pack/mvertes/install.sh +++ b/.vim/pack/mvertes/install.sh @@ -2,12 +2,14 @@ plugins=' git@github.com:mvertes/vimki -git@github.com:fatih/vim-go -git@github.com:othree/xml.vim +#git@github.com:fatih/vim-go +#git@github.com:othree/xml.vim git@github.com:junegunn/fzf.vim -git@github.com:rust-lang/rust.vim -git@github.com:preservim/nerdtree -git@github.com:tpope/vim-fugitive +#git@github.com:rust-lang/rust.vim +#git@github.com:preservim/nerdtree +#git@github.com:tpope/vim-fugitive +git@github.com:prabirshrestha/vim-lsp +#git@github.com:mattn/vim-lsp-settings ' ht='test -d doc && vim -c "helptags doc" -c "q"' @@ -15,12 +17,13 @@ mkdir -p start cd start for p in $plugins do + case $p in ('#'*) continue ;; esac n=${p##*/} if [ -d "$n" ]; then echo "update $p" - (cd $n && git pull && eval "$ht") + (cd "$n" && git pull && eval "$ht") else echo "init $p" - (git clone $p && cd "$n" && eval "$ht") + (git clone "$p" && cd "$n" && eval "$ht") fi done -- cgit v1.2.3