blob: 9b59dba650af636e38ee58621863b1201ff6b406 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
programs.tmux = {
enable = true;
terminal = "tmux-256color";
keyMode = "vi";
prefix = "C-a";
escapeTime = 0;
shortcut = "a";
mouse = true;
baseIndex = 1;
extraConfig = ''
set -g status-position top
set -g status-justify absolute-centre
set -g status-right ""
set -g status-left "#S"
set -g renumber-windows on
set-option -g status-style bg=default
set-option -g window-status-current-style "fg=blue bold"
'';
};
}
|