chore(ZSH): plugins, themes and prompt

This commit is contained in:
Afonso Franco 2024-02-22 11:38:36 +00:00
parent da4cb6094f
commit 9e92a6a8cb
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
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
}