Mercurial > ec-dotfiles
comparison rc/tmux.conf @ 737:002d6aa2d76e
[tmux] Remove legacy configs
author | nanaya <me@nanaya.net> |
---|---|
date | Thu, 09 Jan 2025 03:16:29 +0900 |
parents | rc/tmux-2.9.conf@9ad5a65b1c7e |
children |
comparison
equal
deleted
inserted
replaced
736:3281fed2e242 | 737:002d6aa2d76e |
---|---|
1 set -g repeat-time 0 | |
2 %if "#{==:${TMUX_STATUS_BG},}" | |
3 set -g status-bg cyan | |
4 %else | |
5 set -g status-bg "${TMUX_STATUS_BG}" | |
6 %endif | |
7 set -g status-fg black | |
8 | |
9 set -g status-left '#[bg=white,fg=black] #S #[default] ' | |
10 | |
11 set -g status-right '#[bg=white,fg=black] #H #[bg=black,fg=white] %b-%d %H:%M ' | |
12 | |
13 set -g pane-active-border "fg=cyan" | |
14 | |
15 set -g set-titles on | |
16 set -g set-titles-string '[#S] #I:#W #T' | |
17 | |
18 set -g escape-time 0 | |
19 set -g history-limit 10000 | |
20 | |
21 setw -g window-status-current-style "bg=black fg=white" | |
22 | |
23 bind-key c new-window -c "#{pane_current_path}" | |
24 bind-key '"' split-window -c "#{pane_current_path}" | |
25 bind-key % split-window -h -c "#{pane_current_path}" |