Files
dotfiles/.config/zsh/zshrc.d/90-external-plugins/65-stderred.theme.zsh
Julian Prein ce4b8fa3dd zsh: Only source *.zsh files
Only source `*.zsh` files to prevent confusion or errors on startup.

Rename all files in 90-external-plugins accordingly.
2022-06-23 23:58:49 +02:00

11 lines
212 B
Bash

# 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)$"