summaryrefslogtreecommitdiff
path: root/common/programs/tmux.nix
diff options
context:
space:
mode:
authorbrustybee <bee@4d2.org>2026-03-07 03:47:19 +0530
committerbrustybee <bee@4d2.org>2026-03-07 03:47:19 +0530
commitb9c9e4a45d59c6df1a794cc24b473e394633effb (patch)
tree34c83c66bd3c20379e593c5023f3710d593a95a5 /common/programs/tmux.nix
parentb7ab4668c6dd7d6b153b9bf7ea3923ebe93f1ddd (diff)
Add btop fish rofi and tmux
Diffstat (limited to 'common/programs/tmux.nix')
-rw-r--r--common/programs/tmux.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/programs/tmux.nix b/common/programs/tmux.nix
new file mode 100644
index 0000000..906fa82
--- /dev/null
+++ b/common/programs/tmux.nix
@@ -0,0 +1,18 @@
+{
+ programs.tmux = {
+ enable = true;
+ extraConfig = ''
+ set -g status-position top
+ set -g status-justify absolute-centre
+ set -g status-right ""
+ set -g status-left "#S"
+ set -g base-index 1
+ set -g renumber-windows on
+ set -g mode-key vi
+ set -sg escape-time 0
+ set-option -g status-style bg=default
+ set-option -g window-status-current-style "fg=blue bold"
+ set -g prefix C-SPACE
+ '';
+ };
+}