From 5f2b01db3fc7fc78d42aa07080b551f71d73ee6a Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 28 Jul 2023 19:21:33 -0700 Subject: switching back to alacritty + tmux kitty is not clicking for me. I still prefer tmux. --- home/profiles/tmux.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 home/profiles/tmux.nix (limited to 'home/profiles/tmux.nix') diff --git a/home/profiles/tmux.nix b/home/profiles/tmux.nix new file mode 100644 index 0000000..22f8683 --- /dev/null +++ b/home/profiles/tmux.nix @@ -0,0 +1,20 @@ +{ ... }: +{ + 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 + ''; + }; +} -- cgit 1.4.1