Fix the tmux styles
This commit is contained in:
parent
0f4fc091c9
commit
033e35b8fb
1 changed files with 9 additions and 8 deletions
17
tmux.conf
17
tmux.conf
|
@ -8,7 +8,6 @@ set -g exit-unattached off
|
||||||
|
|
||||||
set -g default-terminal "screen-256color"
|
set -g default-terminal "screen-256color"
|
||||||
set -g history-limit 10000
|
set -g history-limit 10000
|
||||||
|
|
||||||
# Bells from everywhere
|
# Bells from everywhere
|
||||||
set -g bell-action any
|
set -g bell-action any
|
||||||
set -g visual-bell off
|
set -g visual-bell off
|
||||||
|
@ -38,16 +37,13 @@ set-option -g base-index 1
|
||||||
set-option -g pane-base-index 1
|
set-option -g pane-base-index 1
|
||||||
|
|
||||||
# Tabs like this: "(<index>:<window_name>)"
|
# Tabs like this: "(<index>:<window_name>)"
|
||||||
setw -g window-status-bg black
|
setw -g window-status-style "fg=brightgreen,bg=black"
|
||||||
setw -g window-status-fg brightgreen
|
|
||||||
setw -g window-status-format "(#I:#W)"
|
setw -g window-status-format "(#I:#W)"
|
||||||
setw -g window-status-current-bg black
|
setw -g window-status-current-style "fg=yellow,bg=black"
|
||||||
setw -g window-status-current-fg yellow
|
|
||||||
setw -g window-status-current-format "(#I:#W)"
|
setw -g window-status-current-format "(#I:#W)"
|
||||||
|
|
||||||
setw -g window-status-bell-fg red
|
setw -g window-status-bell-style "fg=red"
|
||||||
setw -g window-status-content-fg brightred
|
setw -g window-status-activity-style "fg=brightred"
|
||||||
setw -g window-status-activity-fg brightred
|
|
||||||
|
|
||||||
setw -g alternate-screen on
|
setw -g alternate-screen on
|
||||||
|
|
||||||
|
@ -60,3 +56,8 @@ set-option -g lock-command "tmux clock-mode"
|
||||||
bind-key C-a last-window
|
bind-key C-a last-window
|
||||||
# TODO: Decide if this should have a -n (allow invoking the command without the leader).
|
# TODO: Decide if this should have a -n (allow invoking the command without the leader).
|
||||||
bind-key C-k clear-history
|
bind-key C-k clear-history
|
||||||
|
|
||||||
|
bind-key h select-pane -L
|
||||||
|
bind-key j select-pane -D
|
||||||
|
bind-key k select-pane -U
|
||||||
|
bind-key l select-pane -R
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue