diff --git a/default/.config/zsh/.zlogin b/default/.config/zsh/.zlogin index bea8846..fda7008 100644 --- a/default/.config/zsh/.zlogin +++ b/default/.config/zsh/.zlogin @@ -2,9 +2,4 @@ # Use for final tasks that require the full environment to be ready (e.g., welcome messages, mail checks). # Rarely needed for standard configuration. -[[ -f $HOME/.zshrc.local ]] || touch $HOME/.zshrc.local -source $HOME/.zshrc.local -if [[ $FFENABLED != "false" ]] && command -v fastfetch >/dev/null; then - fastfetch --config examples/13 -fi diff --git a/default/.config/zsh/.zshrc b/default/.config/zsh/.zshrc index 73652dd..6c98212 100644 --- a/default/.config/zsh/.zshrc +++ b/default/.config/zsh/.zshrc @@ -12,4 +12,12 @@ source ${ZDOTDIR}/aliases.zsh source ${ZDOTDIR}/functions.zsh dotstate-update + +[[ -f $HOME/.zshrc.local ]] || touch $HOME/.zshrc.local +source $HOME/.zshrc.local + +if [[ $FFENABLED != "false" ]] && command -v fastfetch >/dev/null; then + fastfetch --config examples/13 +fi + eval "$(starship init zsh)"