caio.co/de/dotfiles

Add `t` as a "fancy" alias to tmux new-session

Much like my old bin/t I thought I wouldn't miss
Id
ba29e473ee68210eeb12d0090ad5065c12914e12
Author
Caio
Commit time
2025-11-09T08:30:11+01:00

Created config/fish/functions/t.fish

@@ -1,0 +1,6
+function t --argument session --description "tmux attach/new-session wrapper"
+ if test -z $session
+ set session scratch
+ end
+ tmux new-session -A -s $session
+end