how to set up config.fish to auto run tmux every time start fish
ref: https://github.com/fish-shell/fish-shell/issues/4434
add this to the end of config.fish
:
if status is-interactive
and not set -q TMUX
exec tmux
end
ref: https://github.com/fish-shell/fish-shell/issues/4434
add this to the end of config.fish
:
if status is-interactive
and not set -q TMUX
exec tmux
end