tmux/tmux.conf.local

62 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-01-28 23:55:11 +01:00
2016-01-28 01:11:03 +01:00
### statusbar {{{
2016-01-28 23:55:11 +01:00
# forground color
set -g status-fg "${debianred}"
# background color
set -g status-bg black
## Terminaux par défaut
# Window foreground color
2016-01-28 23:55:11 +01:00
set-window-option -g window-status-fg "${debianred}"
# Window background color
2016-01-28 23:55:11 +01:00
set-window-option -g window-status-bg "${darkgrey}"
# Attribut
#bright/bold:
#dim:
#underscore:
#blink: "clignotant"?
#reverse: reverse background and foreground colors
#hidden:
#italics:
set-window-option -g window-status-attr bold
## Terminal actif
# Current windows foreground color
set-window-option -g window-status-current-fg black
# Current windows background color
2016-01-28 23:55:11 +01:00
set-window-option -g window-status-current-bg "${debianred}"
# Attribut (cf ci-dessus pour la liste)
set-window-option -g window-status-current-attr dim
# selection
set -wg mode-style bg="${debianred}",fg=white,bold
set -g clock-mode-colour "${debianred}"
## Terminal avec notification
# Couleur du foreground
# Couleur du background
# Attribut
#setw -g window-status-alert-attr default
#setw -g window-status-alert-fg red
#setw -g window-status-alert-bg default
## Panel par défaut
set -g pane-border-fg white
## Panel actif
2016-01-28 23:55:11 +01:00
set -g pane-active-border-fg "${debianred}"
2016-01-28 01:11:03 +01:00
### }}}
### keybindings {{{
## Prefix key (default: C-b)
# Use C-a as a prefix-key only on local session
unbind C-b
set -g prefix C-a
bind a send-prefix
2016-01-28 01:11:03 +01:00
### }}}