dotfiles/.zshrc

19 lines
338 B
Bash

# Execute additional config scripts
autoload colors; colors
always_detach=(make)
always_detach_as_service=(paru makepkg)
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