From 47ef05ab310bb466300e93d1459370450414fbc4 Mon Sep 17 00:00:00 2001 From: "grm@eyesin.space" Date: Tue, 2 Sep 2025 23:04:24 +0000 Subject: init --- home/core/tmux.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 home/core/tmux.nix (limited to 'home/core/tmux.nix') diff --git a/home/core/tmux.nix b/home/core/tmux.nix new file mode 100644 index 0000000..6f591b8 --- /dev/null +++ b/home/core/tmux.nix @@ -0,0 +1,22 @@ +{ + programs.tmux = { + enable = true; + keyMode = "vi"; + historyLimit = 5000; + mouse = true; + terminal = "screen-256color"; + extraConfig = '' + set -as terminal-features ",*:RGB" + set-option -g status-style fg=yellow,bg=black + set-window-option -g window-status-style fg=brightblue,bg=default + set-window-option -g window-status-current-style fg=brightred,bg=default + set-option -g pane-border-style fg=black + set-option -g pane-active-border-style fg=brightgreen + set-option -g message-style fg=brightred,bg=black + set-option -g display-panes-active-colour blue + set-option -g display-panes-colour brightred + set-window-option -g clock-mode-colour green + set-window-option -g window-status-bell-style fg=black,bg=red + ''; + }; +} -- cgit v1.2.3