Fix the tmux styles

This commit is contained in:
Eryn Wells 2018-04-08 07:32:51 -07:00
parent 0f4fc091c9
commit 033e35b8fb

View file

@ -8,7 +8,6 @@ set -g exit-unattached off
set -g default-terminal "screen-256color"
set -g history-limit 10000
# Bells from everywhere
set -g bell-action any
set -g visual-bell off
@ -38,16 +37,13 @@ set-option -g base-index 1
set-option -g pane-base-index 1
# Tabs like this: "(<index>:<window_name>)"
setw -g window-status-bg black
setw -g window-status-fg brightgreen
setw -g window-status-style "fg=brightgreen,bg=black"
setw -g window-status-format "(#I:#W)"
setw -g window-status-current-bg black
setw -g window-status-current-fg yellow
setw -g window-status-current-style "fg=yellow,bg=black"
setw -g window-status-current-format "(#I:#W)"
setw -g window-status-bell-fg red
setw -g window-status-content-fg brightred
setw -g window-status-activity-fg brightred
setw -g window-status-bell-style "fg=red"
setw -g window-status-activity-style "fg=brightred"
setw -g alternate-screen on
@ -60,3 +56,8 @@ set-option -g lock-command "tmux clock-mode"
bind-key C-a last-window
# TODO: Decide if this should have a -n (allow invoking the command without the leader).
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