mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-21 22:18:07 +01:00
use terminal colors in tmux
This commit is contained in:
parent
e5bf69149d
commit
e2e612fc9c
1 changed files with 15 additions and 12 deletions
|
@ -59,31 +59,34 @@ bind u capture-pane \;\
|
|||
# DESIGN
|
||||
|
||||
# clock mode
|
||||
setw -g clock-mode-colour colour0
|
||||
setw -g clock-mode-colour white
|
||||
# copy mode
|
||||
setw -g mode-style 'fg=colour0 bg=colour1 bold'
|
||||
setw -g mode-style 'fg=white bg=red bold'
|
||||
|
||||
# pane borders
|
||||
set -g pane-border-style 'fg=colour1'
|
||||
set -g pane-active-border-style 'fg=colour3'
|
||||
set -g pane-border-style 'fg=red'
|
||||
set -g pane-active-border-style 'fg=yellow'
|
||||
|
||||
# statusbar
|
||||
set -g status-position bottom
|
||||
set -g status-justify left
|
||||
set -g status-style 'fg=#3670a5'
|
||||
set -g status-left ''
|
||||
set -g status-right '%Y-%m-%d %H:%M '
|
||||
set -g status-style 'fg=blue'
|
||||
set -g status-left ' '
|
||||
set -g status-left-style 'fg=blue dim'
|
||||
set -g status-right '%Y-%m-%d %H:%M'
|
||||
set -g status-right-length 50
|
||||
set -g status-left-length 10
|
||||
|
||||
setw -g window-status-current-style 'fg=#071421 bg=#3670a5 bold'
|
||||
setw -g window-status-current-style 'fg=default bg=blue bold'
|
||||
setw -g window-status-current-format ' #I #W #F '
|
||||
|
||||
setw -g window-status-style 'fg=#3670a5 dim'
|
||||
setw -g window-status-format ' #I #[fg=colour7]#W #[fg=#3670a5]#F '
|
||||
setw -g window-status-style 'fg=blue dim'
|
||||
setw -g window-status-format ' #I #W #F '
|
||||
|
||||
setw -g window-status-bell-style 'fg=colour2 bg=#ad6f1d bold'
|
||||
setw -g window-status-bell-style 'fg=black bg=yellow bold'
|
||||
|
||||
# messages
|
||||
set -g message-style 'fg=colour2 bg=colour0 bold'
|
||||
set -g message-style 'fg=black bg=white bold'
|
||||
|
||||
set -g window-style 'dim'
|
||||
set -g window-active-style 'dim'
|
||||
|
|
Loading…
Reference in a new issue