nix/home/config/tmux/module/Session.nix
2024-11-06 01:07:30 +03:00

13 lines
214 B
Nix

{ ... }: {
text = ''
bind -n M-z detach-client
bind -n M-Z detach-client -a
bind -n M-, switch-client -p
bind -n M-. switch-client -n
bind -n M-g choose-session -Z
set -g window-size smallest
'';
}