From ab4a425d979690eff307a2c78c3f557176c87b8d Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 24 Feb 2025 11:54:40 +0100 Subject: tmux: init default config --- configs/default.nix | 1 + configs/tmux.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 configs/tmux.nix (limited to 'configs') diff --git a/configs/default.nix b/configs/default.nix index d693166..06fd83a 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -18,6 +18,7 @@ ./pki ./ssh.nix ./sshd.nix + ./tmux.nix ./vim.nix ./xdg.nix { diff --git a/configs/tmux.nix b/configs/tmux.nix new file mode 100644 index 0000000..a61b8c3 --- /dev/null +++ b/configs/tmux.nix @@ -0,0 +1,11 @@ +{ + programs.tmux.enable = true; + programs.tmux.baseIndex = 1; + programs.tmux.clock24 = true; + programs.tmux.escapeTime = 0; + programs.tmux.historyLimit = 10000; + programs.tmux.terminal = "tmux-direct"; + programs.tmux.extraConfig = '' + setw -g mouse on + ''; +} -- cgit v1.2.3