summaryrefslogtreecommitdiffstats
path: root/configs/tmux.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2025-02-24 11:54:40 +0100
committertv <tv@krebsco.de>2025-02-24 11:54:40 +0100
commitab4a425d979690eff307a2c78c3f557176c87b8d (patch)
treeedcfe50cf32c7062b84ba1181666cae4eb779e6d /configs/tmux.nix
parent0929ef31e628bc592c78e7ced9ebd033084fc0f1 (diff)
tmux: init default config
Diffstat (limited to 'configs/tmux.nix')
-rw-r--r--configs/tmux.nix11
1 files changed, 11 insertions, 0 deletions
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
+ '';
+}