From ef8b281c19a44edd18e17f2d99ffc12a04a7ee55 Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Fri, 8 Aug 2025 00:44:41 -0600 Subject: [PATCH] configure tmux --- home/modules/terminal/default.nix | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/home/modules/terminal/default.nix b/home/modules/terminal/default.nix index bc15305..adc9b93 100644 --- a/home/modules/terminal/default.nix +++ b/home/modules/terminal/default.nix @@ -22,14 +22,27 @@ in { escapeTime = 10; terminal = "xterm-256color"; keyMode = "emacs"; + mouse = true; extraConfig = '' - set -g mouse on set -ga update-environment " LIFT_PID" set -g set-titles on set -g renumber-windows on set -sa terminal-overrides ',xterm-termite:RGB' - set -g status-right "#{?window_bigger,[#{window_offset_x}#,#{window_offset_y}] ,} %H:%M %d-%b-%y" + + set -g status-style bg=default,fg=colour250 + set -g pane-border-style fg=colour236 + set -g pane-active-border-style fg=colour240 + set -g window-status-format " #I:#W " + set -g window-status-style bg=default,fg=colour244 + set -g window-status-current-format " #I:#W " + set -g window-status-current-style bg=colour236,fg=white,bold + set -g status-position bottom + set -g status-left-length 20 + set -g status-right-length 60 + set -g status-left "" + set -g window-status-separator "" + set -g status-justify left ''; }; };