nixos-config/home-manager/modules/tmux.nix
2025-04-02 21:34:02 +02:00

21 lines
471 B
Nix

{ pkgs, ... }: {
programs.tmux = {
enable = true;
keyMode = "vi";
mouse = true;
escapeTime = 0;
plugins = [
pkgs.tmuxPlugins.gruvbox
];
shell = "/home/felix/.nix-profile/bin/zsh";
terminal = "xterm-256color";
extraConfig = ''
# switch panes using Alt-hjkl without prefix
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
'';
};
}