diff options
Diffstat (limited to 'users/fcuny/tmux.nix')
-rw-r--r-- | users/fcuny/tmux.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/users/fcuny/tmux.nix b/users/fcuny/tmux.nix new file mode 100644 index 0000000..1a9a2d4 --- /dev/null +++ b/users/fcuny/tmux.nix @@ -0,0 +1,13 @@ +{ + programs.tmux = { + enable = true; + terminal = "xterm-256color"; + escapeTime = 0; + aggressiveResize = true; + shortcut = "z"; + + extraConfig = '' + setw -g mouse on + ''; + }; +} |