add .zshrc.local support

This commit is contained in:
Nicole O'Connor 2023-04-04 12:50:14 -07:00
parent c7538531a0
commit f085638cf7
1 changed files with 4 additions and 0 deletions

View File

@ -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