switch from zellij to tmux

This commit is contained in:
ArgentumCation 2024-01-06 10:00:26 -05:00
parent 20518f86a0
commit 08894a100e
2 changed files with 5 additions and 5 deletions

View file

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

View file

@ -0,0 +1,2 @@
# Tell tmux to use 256-color internally
set -ga terminal-overrides ",xterm-256color:Tc"