diff options
| author | Martin Fischer <martin@push-f.com> | 2026-05-24 20:34:38 +0200 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2026-05-24 20:36:12 +0200 |
| commit | a78c6e3341c870077e45fa7251b92bf0f897c90f (patch) | |
| tree | 3dc0df3ac5b4746c20b092fa67f473f2c9d5dfac | |
| parent | 570404a2d6fe9a4e3602d73513a5d40275da747a (diff) | |
tweak(zsh): source ~/zshrc-untracked if it exists
| -rw-r--r-- | user/zsh/.zshrc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/user/zsh/.zshrc b/user/zsh/.zshrc index aa65059..01dd686 100644 --- a/user/zsh/.zshrc +++ b/user/zsh/.zshrc @@ -65,3 +65,8 @@ compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-$ZSH_VERSION if [ "$MYNIX_PROFILE" = "workstation" ]; then source "$ZDOTDIR/zshrc-workstation.sh" fi + +# Let's me try out things before committing them here. +if [[ -f ~/zshrc-untracked ]]; then + source ~/zshrc-untracked +fi |
