zshrc: Added some options to uncomment or copy to a shellconfig

one ideal for server use, the other for workstation.
This commit is contained in:
Sagi Dayan 2022-11-03 17:56:19 +02:00
parent 2824e626fa
commit 4f5b52b6fd
Signed by: sagi
GPG key ID: FAB96BFC63B46458

View file

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