summaryrefslogtreecommitdiff
path: root/tmux.conf
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-11-22 08:52:44 -0800
committerFranck Cuny <franck.cuny@gmail.com>2016-11-22 08:52:44 -0800
commit92d1f45eb84c39d25b08fe304e2153d8986eabc3 (patch)
treee2c835dfe2322804071552bdda453cfd55e8f089 /tmux.conf
parent[bin] Add tmux-status to the docker-gcp script. (diff)
downloademacs.d-92d1f45eb84c39d25b08fe304e2153d8986eabc3.tar.gz
[tmux] colors for the status bar; indicates if docker runs
Diffstat (limited to 'tmux.conf')
-rw-r--r--tmux.conf16
1 files changed, 8 insertions, 8 deletions
diff --git a/tmux.conf b/tmux.conf
index 6c77707..068685b 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -10,28 +10,28 @@ set -g default-terminal "screen-256color"
# messaging
set -g message-bg colour167
-set -g message-fg white
+set -g message-fg black
# View
-set-option -g status-interval 5
+set-option -g status-interval 10
set-option -g status-left-length 16
set-option -g status-right-length 50
-setw -g window-status-format " #W "
-set-option -g status-bg colour240
+setw -g window-status-format "#I:#W "
+set-option -g status-bg colour232
set-option -g status-fg white
set -g status-left ''
-set-option -g status-right '[%H:%M]'
+set-option -g status-right '#(docker-gcp tmux-status) | %H:%M'
set-option -g status-right-fg white
set-option -g status-right-bg colour232
setw -g window-status-current-format " #W "
-set-window-option -g window-status-current-bg colour250
+set-window-option -g window-status-current-bg colour254
set-window-option -g window-status-current-fg black
-# move pain like Vim
+# move pane like Vim
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
@@ -50,7 +50,7 @@ bind o last-pane
# Option
set-window-option -g mode-keys vi
-# resize pain
+# resize pane
bind -r H resize-pane -L 2
bind -r L resize-pane -R 2
bind -r J resize-pane -D 2