Commit | Line | Data |
---|---|---|
3dd21187 SK |
1 | # |
2 | ||
3 | set -g default-terminal "screen-256color" | |
4 | #set-option -ga terminal-overrides ",xterm-256color:Tc" # True color. Doesn't work. | |
5 | ||
6 | set -g prefix F1 | |
7 | # prefix2 <NONE> | |
8 | set -g mouse on | |
9 | # mouse-utf8 on | |
10 | set -g mode-keys vi | |
cf837c54 | 11 | set -g history-limit 1000000 |
3dd21187 SK |
12 | |
13 | # assume-paste-time 1 | |
14 | # base-index 0 | |
15 | # bell-action any | |
16 | # bell-on-alert off | |
17 | # default-command "" | |
18 | # default-shell "/bin/zsh" | |
19 | # destroy-unattached off | |
20 | # detach-on-destroy on | |
21 | # display-panes-active-colour red | |
22 | # display-panes-colour blue | |
23 | # display-panes-time 1000 | |
24 | # display-time 750 | |
25 | # history-limit 2000 | |
26 | # lock-after-time 0 | |
27 | # lock-command "lock -np" | |
28 | # message-command-style fg=yellow,bg=black | |
29 | # message-style fg=black,bg=yellow | |
22a8bafd | 30 | set -g renumber-windows on |
37ccea4b | 31 | set -g repeat-time 250 |
3dd21187 SK |
32 | # set-remain-on-exit off |
33 | ||
34 | # #H Hostname of local host | |
35 | # #h Hostname of local host (no domain name) | |
36 | # #D Unique pane ID | |
37 | # #P Index of pane | |
38 | # #T Title of pane | |
39 | # #S Name of session | |
40 | # #F Window flags | |
41 | # #I Index of window | |
42 | # #W Name of window | |
43 | ||
44 | set -g set-titles on | |
84d0d20e | 45 | set -g set-titles-string "#{window_name} - #{pane_title} #{session_alerts}" |
3dd21187 SK |
46 | set -g allow-rename on |
47 | setw -g automatic-rename | |
48 | ||
8f413979 | 49 | set -g status on |
3dd21187 | 50 | setw -g status-position bottom |
8f413979 | 51 | setw -g status-style "fg=#b2b2a0" |
e33652de | 52 | setw -ga status-style "bg=#383838" |
a9f21c11 SK |
53 | #setw -ga status-style "bg=#1f1f1f" # too dark |
54 | #setw -ga status-style "bg=#3f3f3f" # blends with term bg too much | |
84d0d20e SK |
55 | setw -g status-left "" |
56 | setw -g status-left-length 0 | |
57 | setw -g status-right "#(basename #{socket_path}) (#{session_name}) [#{window_index}.#{pane_index} #{session_windows}] " | |
ded6da97 | 58 | setw -g status-right-length 50 |
89f8a157 | 59 | setw -g status-interval 10 |
3dd21187 | 60 | |
8f413979 SK |
61 | setw -g window-status-current-style "fg=#dfaf8f" |
62 | #setw -ga window-status-current-style "bg=#2b2b2b" | |
3dd21187 SK |
63 | |
64 | # update-environment "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY" | |
65 | # visual-activity off | |
66 | # visual-bell off | |
67 | # visual-silence off | |
68 | # word-separators " -_@" |