summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorvin <vin@vineetk.net>2025-05-17 11:13:14 -0400
committervin <vin@vineetk.net>2025-05-17 11:13:14 -0400
commit46dc7bb471a9bf384ad7e2b1372759e6bcc86afa (patch)
tree2f2a86fdd251c15f9f77a5d55972c6bdf11b3e7d /home.nix
parentf2e8c51f06209cfced9a8c017532658bbc214d70 (diff)
b
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/home.nix b/home.nix
index 60c9455..ba872a3 100644
--- a/home.nix
+++ b/home.nix
@@ -711,16 +711,19 @@ in
711 711
712 extraConfig = '' 712 extraConfig = ''
713 # status bar 713 # status bar
714 set-option -g status-style bg=terminal 714 set-option -g status-style bg=terminal
715 set-option -g status-style fg=terminal 715 set-option -g status-style fg=terminal
716 716
717 set-option -g window-status-format "#[bg=terminal fg=terminal noreverse]#{window_index}:#{window_name}" 717 set-option -g window-status-format "#[bg=terminal fg=terminal noreverse]#{window_index}:#{window_name}"
718 set-option -g window-status-current-format "#[bg=black fg=terminal]#{window_index}:#{window_name}#{window_flags}" 718 set-option -g window-status-current-format "#[bg=black fg=terminal]#{window_index}:#{window_name}#{window_flags}"
719 719
720 set-option -g status-right "%R %b %d %Y" 720 set-option -g status-right "%R %b %d %Y"
721 721
722 # colorscheme stuff 722 # colorscheme stuff
723 set-option -sa terminal-features ',*:RGB' 723 set-option -sa terminal-features ',*:RGB'
724
725 # remove annoying escape delay
726 set-option -g escape-time 0
724 ''; 727 '';
725 }; 728 };
726 729