Automatically running tmux in fish
Change
[[ $TERM != "screen" ]] && exec tmux
to
test $TERM != "screen"; and exec tmux
http://fishshell.com/docs/2.1/commands.html#test
http://fishshell.com/docs/2.1/commands.html#and
Change
[[ $TERM != "screen" ]] && exec tmux
to
test $TERM != "screen"; and exec tmux
http://fishshell.com/docs/2.1/commands.html#test
http://fishshell.com/docs/2.1/commands.html#and