chore(ZSH): plugins, themes and prompt

This commit is contained in:
2024-02-22 11:38:36 +00:00
parent da4cb6094f
commit 9e92a6a8cb
15 changed files with 157 additions and 24 deletions

View File

@@ -16,3 +16,12 @@ capture() {
}
'
}
sourceall(){
set -e
pids=$(pgrep zsh)
while IFS= read -r pid; do
kill -USR1 "$pid"
done <<< "$pids"
set +e
}