28 lines
568 B
Nix
28 lines
568 B
Nix
|
{ pkgs, ... }: {
|
||
|
programs.tmux = {
|
||
|
enable = true;
|
||
|
baseIndex = 1;
|
||
|
clock24 = true;
|
||
|
prefix = "C-a";
|
||
|
sensibleOnTop = true;
|
||
|
plugins = with pkgs.tmuxPlugins; [
|
||
|
power-theme
|
||
|
];
|
||
|
|
||
|
extraConfig = ''
|
||
|
set-window-option -g automatic-rename on
|
||
|
set-option -g set-titles on
|
||
|
|
||
|
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
|
||
|
|
||
|
bind -n S-Left previous-window
|
||
|
bind -n S-Right next-window
|
||
|
|
||
|
set -sg escape-time 0
|
||
|
'';
|
||
|
};
|
||
|
}
|