aboutsummaryrefslogtreecommitdiffstats
path: root/home/core/tmux.nix
diff options
context:
space:
mode:
authorgrm@eyesin.space <grm@eyesin.space>2025-09-02 23:04:24 +0000
committergrm@eyesin.space <grm@eyesin.space>2025-09-02 23:04:24 +0000
commit47ef05ab310bb466300e93d1459370450414fbc4 (patch)
tree808f155d2871f831af743509de982c4c9789357c /home/core/tmux.nix
downloadnixos-config-47ef05ab310bb466300e93d1459370450414fbc4.tar.gz
nixos-config-47ef05ab310bb466300e93d1459370450414fbc4.tar.bz2
nixos-config-47ef05ab310bb466300e93d1459370450414fbc4.zip
Diffstat (limited to 'home/core/tmux.nix')
-rw-r--r--home/core/tmux.nix22
1 files changed, 22 insertions, 0 deletions
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
+ '';
+ };
+}