tmux moshi

This commit is contained in:
2026-03-24 09:11:21 +01:00
parent 9c82b54a52
commit 5558c0e30b

View File

@@ -56,3 +56,8 @@ eval "$(pyenv init - zsh)"
eval "$(starship init zsh)" eval "$(starship init zsh)"
eval "$(zoxide init zsh)" eval "$(zoxide init zsh)"
# Attach to or create tmux session 'moshi' if tmux is installed and not already inside tmux
if command -v tmux &>/dev/null && [ -z "$TMUX" ]; then
tmux new-session -As moshi
fi