dotfiles/.zshrc
2025-01-10 15:48:36 -07:00

16 lines
276 B
Bash

# Execute additional config scripts
autoload colors; colors
for file in $HOME/.config/zsh/*.zsh; do
if (( ${+LC_DEBUG} )); then echo "running $file"; fi
source $file
done
if which thefuck &> /dev/null; then
eval $(thefuck --alias)
fi
setopt INC_APPEND_HISTORY_TIME