# HG changeset patch # User Meredith Howard # Date 1458264065 0 # Node ID 54da53978ffbc9af99b3ddcfb5e8a8089515e9a2 # Parent 5a1849a8608ab20543c3c8f343b0c3f9ac7c5884 Brighten active pane diff --git a/.tmux.conf b/.tmux.conf --- a/.tmux.conf +++ b/.tmux.conf @@ -150,7 +150,7 @@ bind-key k select-pane -U bind-key l select-pane -R # Look good -set-option -g default-terminal "screen-256color" +set -g default-terminal "screen-256color" # Enable mouse support (works in iTerm) (tmux 2.x) set -g mouse on @@ -161,16 +161,22 @@ set -g mouse-utf8 on # bind -n WheelDownPane select-pane -t= \; send-keys -M # Change cursor in vim to distinguish between insert and command mode -set-option -g terminal-overrides '*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E]50;CursorShape=%?%p1%{3}%<%t%{0}%e%p1%{2}%-%;%d\007' +set -g terminal-overrides '*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E]50;CursorShape=%?%p1%{3}%<%t%{0}%e%p1%{2}%-%;%d\007' # Start tab numbering at 1 set -g base-index 1 +set -g pane-base-index 1 +set -g renumber-windows on # Allows for faster key repetition -set -s escape-time 0 +set -sg escape-time 0 -set-option -g status-bg colour235 -set-option -g status-fg cyan +set -g pane-border-style bg=colour232,fg=colour235 +set -g pane-active-border-style bg=colour232,fg=colour239 +set -g window-active-style bg=colour232 + +set -g status-bg colour235 +set -g status-fg cyan source ~/.tmux.conf.local