From 67a53429f80eaada87f631747e6d15be044190f9 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 9 Feb 2022 08:40:53 -0800 Subject: home-manager: add tmux configuration --- users/fcuny/tmux.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 users/fcuny/tmux.nix (limited to 'users/fcuny/tmux.nix') 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 + ''; + }; +} -- cgit 1.4.1