tmux: let's make it pretty
This commit is contained in:
parent
fb5c9c61a1
commit
19ac67eaf2
1 changed files with 25 additions and 3 deletions
|
@ -14,8 +14,30 @@ set-option -ga terminal-overrides ",xterm*:Tc"
|
||||||
# vi style copy mode
|
# vi style copy mode
|
||||||
setw -g mode-keys vi
|
setw -g mode-keys vi
|
||||||
|
|
||||||
# do not truncate session name
|
|
||||||
set -g status-left-length 15
|
|
||||||
|
|
||||||
# set focus events
|
# set focus events
|
||||||
set-option -g focus-events on
|
set-option -g focus-events on
|
||||||
|
|
||||||
|
# theming
|
||||||
|
# modes
|
||||||
|
setw -g clock-mode-colour white
|
||||||
|
|
||||||
|
# panes
|
||||||
|
set -g pane-border-style 'fg=colour244'
|
||||||
|
set -g pane-active-border-style 'fg=colour255'
|
||||||
|
|
||||||
|
# statusbar
|
||||||
|
set -g status-position bottom
|
||||||
|
set -g status-justify left
|
||||||
|
set -g status-style 'bg=color8 fg=colour15'
|
||||||
|
set -g status-right '#[bg=color0] @#H (^_^) %H:%M '
|
||||||
|
set -g status-left '[#S]'
|
||||||
|
set -g status-right-length 50
|
||||||
|
set -g status-left-length 20
|
||||||
|
setw -g window-status-current-style 'fg=brightgreen bg=color0 bold'
|
||||||
|
setw -g window-status-current-format ' #I#[fg=color15]:#W#[fg=brightgreen]#F '
|
||||||
|
setw -g window-status-style 'fg=brightgreen bg=colour236'
|
||||||
|
setw -g window-status-format ' #I#[fg=colour15]:#W#[fg=green bold]#F '
|
||||||
|
setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold'
|
||||||
|
|
||||||
|
# messages
|
||||||
|
set -g message-style 'fg=black bg=white bold'
|
||||||
|
|
Loading…
Add table
Reference in a new issue