15 lines
275 B
Bash
15 lines
275 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
|
|
|