aboutsummaryrefslogtreecommitdiff
path: root/users/programs/tmux.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-12 08:52:51 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-12 08:52:51 -0700
commit61fa2329f553f9c7962e968e1ec98ae675903b70 (patch)
tree0afdbf7c8fddda1718abee49db6206a5f8df5b09 /users/programs/tmux.nix
parentdirectories first (diff)
downloadinfra-61fa2329f553f9c7962e968e1ec98ae675903b70.tar.gz
users -> home
Diffstat (limited to 'users/programs/tmux.nix')
-rw-r--r--users/programs/tmux.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/users/programs/tmux.nix b/users/programs/tmux.nix
deleted file mode 100644
index 9b84f5c..0000000
--- a/users/programs/tmux.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ pkgs, ... }:
-{
- programs.tmux = {
- enable = true;
- terminal = "xterm-256color";
- escapeTime = 0;
- aggressiveResize = true;
- baseIndex = 1;
- shortcut = "z";
- clock24 = true;
- shell = "${pkgs.fish}/bin/fish";
- historyLimit = 50000; # Bigger buffer
- extraConfig = ''
- setw -g mouse on
- # Avoid date/time taking up space
- set -g status-right ""
- set -g status-right-length 0
- set-option -g renumber-windows on
- '';
- };
-}