This commit is contained in:
Yuan Chiu 2025-05-04 18:29:11 +08:00
parent 7313f302e6
commit 691f6b2b2d

View File

@ -1,12 +1,12 @@
#!/bin/sh #!/bin/bash
if command -v zsh &> /dev/null; then if command -v zsh &> /dev/null; then
zsh -i -c 'zinit update' zsh -i -c 'zinit update'
fi fi
if command -v vim &> /dev/null; then if command -v vim &> /dev/null; then
vim +PlugInstall +qall vim +PlugInstall +qall
fi fi
if command -v nvim &> /dev/null; then if command -v nvim &> /dev/null; then
nvim --headless "+Lazy! update" +qa nvim --headless "+Lazy! update" +qa
fi fi