mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-22 07:15:25 +00:00
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:
parent
2824e626fa
commit
4f5b52b6fd
1 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue