mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
feat(zsh): Manually manage plugins without omz
This commit is contained in:
parent
556eca6b1d
commit
8288945608
5 changed files with 37 additions and 26 deletions
13
zsh/update.sh
Normal file
13
zsh/update.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# $DOTFILES/zsh/update.sh
|
||||
|
||||
# This file won't be sourced by zsh by default
|
||||
# Use `source` to run this file for updating plugins
|
||||
|
||||
# Plugins #
|
||||
# Auto `git pull` on $ZDOTDIR/plugins
|
||||
for plugin in $ZDOTDIR/plugins/*; do
|
||||
if [ -d "$plugin" ]; then
|
||||
cd $plugin
|
||||
git pull --quiet --no-edit
|
||||
fi
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue