diff options
| author | schererleander <leander@schererleander.de> | 2025-05-10 10:34:57 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-05-10 10:34:57 +0200 |
| commit | 9c40078e3511d114deef87bea6d3c448aa194ebc (patch) | |
| tree | 2a929ccc450241d9d301543e8293c6240bc85dc3 /modules | |
| parent | 307d8b020494b7bb432478eef34061dd4620c534 (diff) | |
add settings
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/tmux.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/tmux.nix b/modules/tmux.nix index c4bfefc..4d200bb 100644 --- a/modules/tmux.nix +++ b/modules/tmux.nix @@ -8,6 +8,18 @@ in { config = lib.mkIf cfg.enable { programs.tmux = { enable = true; + extraConfig = '' + unbind C-b + set-option -g prefix C-a + bind-key C-a send-prefix + + 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 + + set -g mouse on + ''; }; }; } |
