diff options
| author | Marc Vertes <mvertes@free.fr> | 2025-01-15 11:44:13 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2025-01-15 11:44:13 +0100 |
| commit | 307df21222316d35f32e1597824283797aa6a74c (patch) | |
| tree | bf6a73f1be8f76cfcb95cde4e48a8ada9ff6bce4 /.vim/pack/mvertes/install.sh | |
| parent | 137fd617030c85e9eef6858d9d5cd63cdc306ff6 (diff) | |
update
Diffstat (limited to '.vim/pack/mvertes/install.sh')
| -rwxr-xr-x | .vim/pack/mvertes/install.sh | 17 |
1 files changed, 10 insertions, 7 deletions
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 |
