blob: 6f591b8808b9d076c2445d81a5df26cf7ecd1e96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
'';
};
}
|