From c2470791e31fa2952644e26c52ff1f956f03d41b Mon Sep 17 00:00:00 2001
From: xero <x@xero.nu>
Date: Sat, 18 Apr 2015 13:26:45 -0400
Subject: update tmux to use 256 color names

---
 tmux/.tmux.conf | 28 +++++++++++++---------------
 1 file changed, 13 insertions(+), 15 deletions(-)

(limited to 'tmux')

diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf
index 4880851..e3c7da7 100644
--- a/tmux/.tmux.conf
+++ b/tmux/.tmux.conf
@@ -76,8 +76,8 @@ bind : command-prompt
 
 # panes
 set -g mouse-select-pane on
-set -g pane-border-fg black
-set -g pane-active-border-fg black
+set -g pane-border-fg colour0
+set -g pane-active-border-fg colour0
 #set -g pane-active-border-attr blink
 # resize panes with mouse (drag borders)
 set -g mouse-select-pane on
@@ -86,30 +86,28 @@ set -g mouse-resize-pane on
 # status line
 set -g status-utf8 on
 set -g status-justify left
-set -g status-bg default
-set -g status-fg blue
+set -g status-bg colour0
+set -g status-fg colour66
 set -g status-interval 2
 
 # messaging
-set -g message-fg black
-set -g message-bg blue
-set -g message-command-fg blue
-set -g message-command-bg black
+set -g message-fg colour0
+set -g message-bg colour66
+set -g message-command-fg colour66
+set -g message-command-bg colour0
 
 #window mode
-setw -g mode-bg blue
-setw -g mode-fg black
+setw -g mode-bg colour66
+setw -g mode-fg colour0
 
 #resizing
 setw -g aggressive-resize on
 
 # window status
 set-option -g status-position bottom
-setw -g window-status-format "#[bg=colour241]#[fg=black]█▓░ #W "
-setw -g window-status-attr dim
-setw -g window-status-current-format "#[bg=colour66]#[fg=black]█▓░ #W "
+setw -g window-status-format "#[bg=colour241,fg=colour0,noreverse]█▓░ #W "
+setw -g window-status-current-format "#[bg=colour66,fg=colour0,noreverse]█▓░ #W "
 setw -g window-status-content-attr blink
-setw -g window-status-current-attr dim
 
 # Info on right
 set -g status-right-length 100
@@ -128,7 +126,7 @@ set-window-option -g monitor-content on
 set-option -g bell-action none
 
 # tmux clock
-set -g clock-mode-colour blue
+set -g clock-mode-colour colour66
 
 # some key-binding changes
 bind x kill-pane
-- 
cgit v1.2.1