nix/home/config/tmux/module/Config.nix

9 lines
111 B
Nix
Raw Normal View History

2024-06-23 04:55:57 +03:00
{ ... }: let
mod = "M";
2024-04-30 20:35:45 +03:00
in {
text = ''
unbind-key C-b
2024-06-23 04:55:57 +03:00
bind -n ${mod}-r source-file /etc/tmux.conf
2024-04-30 20:35:45 +03:00
'';
}