nix/home/config/tmux/module/Session.nix

13 lines
214 B
Nix
Raw Normal View History

{ ... }: {
2024-04-30 20:35:45 +03:00
text = ''
bind -n M-z detach-client
bind -n M-Z detach-client -a
2024-04-30 20:35:45 +03:00
2024-09-01 04:25:00 +03:00
bind -n M-, switch-client -p
bind -n M-. switch-client -n
bind -n M-g choose-session -Z
2024-04-30 20:35:45 +03:00
set -g window-size smallest
'';
}