23 lines
886 B
Bash
23 lines
886 B
Bash
set-option -g status-position bottom
|
|
set-option -g default-terminal "screen-256color"
|
|
set-option -sa terminal-features ',xterm-256color:RGB'
|
|
set-option -sg escape-time 0
|
|
set-option -g focus-events on
|
|
|
|
set -g status-bg black
|
|
set -g status-fg brightblack
|
|
set -g status-left ''
|
|
set -g status-right ' #h: #S'
|
|
|
|
# Use normal and bright monochrome colors to show a tab line on the left.
|
|
set -g status-justify left
|
|
set-window-option -g window-status-separator ''
|
|
set-window-option -g window-status-format '#[bg=black,fg=#555555] #I #W '
|
|
set-window-option -g window-status-current-format '#[bg=black,fg=brightblack] #I #W '
|
|
|
|
# Switching panes should change the foreground color but not border colors.
|
|
set -g window-style 'bg=default,fg=#ababab'
|
|
set -g window-active-style 'bg=default,fg=white'
|
|
set -g pane-border-style 'bg=default,fg=black'
|
|
set -g pane-active-border-style 'bg=default,fg=black'
|