Mercurial > ec-dotfiles
annotate rc/tmux-2.9.conf @ 716:42e58cea7821
[vimrc] Remove unused craps
author | nanaya <me@nanaya.net> |
---|---|
date | Mon, 19 Dec 2022 05:39:15 +0900 |
parents | 5ca9e6f4039e |
children |
rev | line source |
---|---|
686
5ebfac7426e5
Use screen terminal by default until everything is updated
nanaya <me@nanaya.pro>
parents:
627
diff
changeset
|
1 set -g default-terminal "screen-256color" |
627 | 2 set -g repeat-time 0 |
699 | 3 %if "#{==:${TMUX_STATUS_BG},}" |
4 set -g status-bg cyan | |
5 %else | |
6 set -g status-bg "${TMUX_STATUS_BG}" | |
7 %endif | |
627 | 8 set -g status-fg black |
9 | |
10 set -g status-left '#[bg=white,fg=black] #S #[default] ' | |
11 | |
12 set -g status-right '#[bg=white,fg=black] #H #[bg=black,fg=white] %b-%d %H:%M ' | |
13 | |
14 set -g pane-active-border "fg=cyan" | |
15 | |
16 set -g set-titles on | |
17 set -g set-titles-string '[#S] #I:#W #T' | |
18 | |
19 set -g escape-time 0 | |
20 set -g history-limit 10000 | |
21 | |
22 setw -g window-status-current-style "bg=black fg=white" | |
23 | |
24 bind-key c new-window -c "#{pane_current_path}" | |
25 bind-key '"' split-window -c "#{pane_current_path}" | |
26 bind-key % split-window -h -c "#{pane_current_path}" |