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
}
# If you have zellij installed, this will auto start it
#if [ -z "$ZELLIJ" ] && checkCommand zellij; then
# #export ZELLIJ_AUTO_ATTACH=true
# exec zellij
#fi
if [ -z "$TMUX" ] && checkCommand tmux; then
exec tmux new -As0
fi
# Speed up shell load on WSL
OLDPATH=$PATH
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"