diff options
author | Franck Cuny <franck@fcuny.net> | 2023-12-14 17:58:19 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-12-14 17:58:19 -0800 |
commit | 3f1bd983565dfd40f1ba2c3d602cf838f35de6e5 (patch) | |
tree | 7ff92c4f1dbed4ad07462b2b3453352096bcaad3 /home/tmux.nix | |
parent | update the main documentation (diff) | |
download | world-3f1bd983565dfd40f1ba2c3d602cf838f35de6e5.tar.gz |
delete more unused configurations
Diffstat (limited to 'home/tmux.nix')
-rw-r--r-- | home/tmux.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/home/tmux.nix b/home/tmux.nix deleted file mode 100644 index 22f8683..0000000 --- a/home/tmux.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ ... }: -{ - programs.tmux = { - enable = true; - - terminal = "xterm-256color"; - escapeTime = 0; - aggressiveResize = true; - baseIndex = 1; - shortcut = "z"; - clock24 = true; - historyLimit = 50000; # Bigger buffer - - extraConfig = '' - setw -g mouse on - - set-option -g renumber-windows on - ''; - }; -} |