dotfiles/.zshrc

13 lines
235 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
eval $(thefuck --alias)
setopt INC_APPEND_HISTORY_TIME