From f085638cf7d0389dc0672c4aa98a9a56feeb0b46 Mon Sep 17 00:00:00 2001 From: Nicole O'Connor Date: Tue, 4 Apr 2023 12:50:14 -0700 Subject: [PATCH] add .zshrc.local support --- zshrc-stub | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zshrc-stub b/zshrc-stub index 2b68833..abfa2a0 100644 --- a/zshrc-stub +++ b/zshrc-stub @@ -1,5 +1,8 @@ # vim: ft=zsh : +# Hint: If you're looking to add things to zshrc, make a new file called .zshrc.local and +# put your changes there to avoid it getting clobbered by zeesh updates. + autoload -U colors && colors PROMPT="%{$fg[cyan]%}%n%{$fg[white]%}@%{$fg[magenta]%}%m %{$fg[white]%}%~ %# " @@ -24,3 +27,4 @@ fpath=( "${fpath[@]}" ) source ~/.local/share/zeesh/zeesh.zsh +[[ -f ~/.zshrc.local ]] && source ~/.zshrc.local \ No newline at end of file