Add: Per-Computer ZSH config sourcing
This commit is contained in:
parent
795cfcb993
commit
e4358943b4
1 changed files with 5 additions and 3 deletions
8
zshrc
8
zshrc
|
@ -6,9 +6,6 @@ precmd() { print "" }
|
||||||
PS1="⟩"
|
PS1="⟩"
|
||||||
RPS1="%{$fg[magenta]%}%20<...<%~%<<%{$reset_color%}"
|
RPS1="%{$fg[magenta]%}%20<...<%~%<<%{$reset_color%}"
|
||||||
|
|
||||||
# Aliases
|
|
||||||
alias e=ember
|
|
||||||
|
|
||||||
# Auto start tmux
|
# Auto start tmux
|
||||||
if [ "$TMUX" = "" ]; then tmux; fi
|
if [ "$TMUX" = "" ]; then tmux; fi
|
||||||
|
|
||||||
|
@ -33,3 +30,8 @@ antigen bundle lukechilds/zsh-nvm
|
||||||
|
|
||||||
export NVM_DIR="$HOME/.nvm"
|
export NVM_DIR="$HOME/.nvm"
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue