diff --git a/files/dotfiles/zshrc b/files/dotfiles/zshrc index 10db868..d8e9e38 100644 --- a/files/dotfiles/zshrc +++ b/files/dotfiles/zshrc @@ -100,7 +100,7 @@ source $ZSH/oh-my-zsh.sh # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" -# Common +# Common source ~/.shellconfig/common.sh # Aliases source ~/.shellconfig/aliases.sh @@ -114,5 +114,7 @@ if [ -d ~/.shellconfig/autocomplete ]; then fi -# Start tmux if not in a session +# Ideal for server use: Start tmux if not in a session # [ -z $TMUX ] && ( tmux a || tmux ) +# Ideal for desktop use: If tmux is not open already - create a new session and open project manager +# [ -z $TMUX ] && (tmux new-session ~/.shellconfig/workspaces/open_workspace.sh)