zsh: Only source *.zsh files

Only source `*.zsh` files to prevent confusion or errors on startup.

Rename all files in 90-external-plugins accordingly.
This commit is contained in:
2022-05-01 14:04:11 +02:00
parent a912530f6f
commit ce4b8fa3dd
13 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
# Bold red
if (( $+commands[tput] )); then
STDERRED_ESC_CODE="$(tput bold && tput setaf 1)"
else
STDERRED_ESC_CODE="\e[1m\e31m"
fi
export STDERRED_ESC_CODE
export STDERRED_BLACKLIST="^(git|curl|wget|swipl)$"