From 425ed8a59d2cc38a15b12b609829a667a562a31a Mon Sep 17 00:00:00 2001 From: Jeremy McClure Date: Sat, 1 Aug 2026 19:39:30 -0400 Subject: [PATCH] Update 2 files: .zlogin, .zshrc --- default/.config/zsh/.zlogin | 5 ----- default/.config/zsh/.zshrc | 8 ++++++++ 2 files changed, 8 insertions(+), 5 deletions(-) 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)"