switch from zellij to tmux
This commit is contained in:
parent
20518f86a0
commit
08894a100e
2 changed files with 5 additions and 5 deletions
|
|
@ -7,11 +7,9 @@ checkCommand(){
|
||||||
type "$1" >/dev/null 2>&1
|
type "$1" >/dev/null 2>&1
|
||||||
}
|
}
|
||||||
# If you have zellij installed, this will auto start it
|
# If you have zellij installed, this will auto start it
|
||||||
#if [ -z "$ZELLIJ" ] && checkCommand zellij; then
|
if [ -z "$TMUX" ] && checkCommand tmux; then
|
||||||
# #export ZELLIJ_AUTO_ATTACH=true
|
exec tmux new -As0
|
||||||
# exec zellij
|
fi
|
||||||
#fi
|
|
||||||
|
|
||||||
# Speed up shell load on WSL
|
# Speed up shell load on WSL
|
||||||
OLDPATH=$PATH
|
OLDPATH=$PATH
|
||||||
PATH=$(echo "$PATH" | sed -e 's/\/mnt\/.*\?://g')
|
PATH=$(echo "$PATH" | sed -e 's/\/mnt\/.*\?://g')
|
||||||
|
|
|
||||||
2
private_dot_config/tmux/executable_tmux.conf
Normal file
2
private_dot_config/tmux/executable_tmux.conf
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Tell tmux to use 256-color internally
|
||||||
|
set -ga terminal-overrides ",xterm-256color:Tc"
|
||||||
Loading…
Add table
Reference in a new issue