From e4358943b45b8a34974f146a9ad584268b32c072 Mon Sep 17 00:00:00 2001 From: Joe Wroten Date: Mon, 16 Oct 2017 09:13:37 -0500 Subject: [PATCH] Add: Per-Computer ZSH config sourcing --- zshrc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/zshrc b/zshrc index 284c79d..07c6629 100644 --- a/zshrc +++ b/zshrc @@ -6,9 +6,6 @@ precmd() { print "" } PS1="⟩" RPS1="%{$fg[magenta]%}%20<...<%~%<<%{$reset_color%}" -# Aliases -alias e=ember - # Auto start tmux if [ "$TMUX" = "" ]; then tmux; fi @@ -33,3 +30,8 @@ antigen bundle lukechilds/zsh-nvm export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm + +# custom computer config +if [ -f ~/.zshrc.custom ]; then + source ~/.zshrc.custom +fi