CrOS/modules/users/crow/configs/tmux.nix
TheWanderingCrow 663aeffed8 ricing
2024-12-29 20:16:00 -05:00

17 lines
331 B
Nix

{
programs.tmux = {
enable = true;
keyMode = "vi";
extraConfig = ''
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
'';
};
}