25 lines
530 B
Nix
25 lines
530 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
|
|
programs.tmux = {
|
|
enable = true;
|
|
clock24 = true;
|
|
extraConfig = ''
|
|
# vim keymaps for switching panes
|
|
setw -g mode-keys vi
|
|
bind-key h select-pane -L
|
|
bind-key j select-pane -D
|
|
bind-key k select-pane -U
|
|
bind-key l select-pane -R
|
|
bind-key -r C-h select-window -t :-
|
|
bind-key -r C-h select-window -t :+
|
|
'';
|
|
plugins = [
|
|
{ plugin = inputs.minimal-tmux.packages.${pkgs.system}.default; }
|
|
pkgs.tmuxPlugins.yank
|
|
];
|
|
};
|
|
}
|