From e1be65bbb9d38a4ae11fe15fa21f00b9a1869b41 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sat, 13 Jun 2015 23:22:49 -0600 Subject: [PATCH] added things and colors from painless tmux --- tmux.conf | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/tmux.conf b/tmux.conf index e811fd1..5eb5811 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,3 +1,5 @@ +#tmux.conf inspired by painless tmux +#solarized color scheme #set 256 colormode set -g default-terminal "screen-256color" #remap prefix to ctrl + a @@ -28,3 +30,50 @@ bind-key -r K resize-pane -U bind-key -r J resize-pane -D bind-key -r H resize-pane -L bind-key -r L resize-pane -R + +#vim mod-keys +setw -g mode-keys vi + +#capture panes and save to buffer +bind C-s run "tmux capture pane && save-buffer /tmp/buffer.txt" +bind C-c choose-buffer + +# colors +# statusline +set -g status-bg black +set -g status-fg white +set -g status-attr dim + +# default window title colors +setw -g window-status-fg white +setw -g window-status-bg default +setw -g window-status-attr dim + +# active window title colors +setw -g window-status-current-fg white +setw -g window-status-current-bg default +setw -g window-status-current-attr bright + +# bell alerted window color +setw -g window-status-bell-bg red +setw -g window-status-bell-fg white +setw -g window-status-bell-attr bright + +# content alerted color +setw -g window-status-content-bg blue +setw -g window-status-content-fg white +setw -g window-status-content-attr bright +setw -g window-status-activity-bg blue +setw -g window-status-activity-fg white +setw -g window-status-activity-attr bright + +# pane borders +set -g pane-border-fg white +set -g pane-border-bg default +set -g pane-active-border-fg black +set -g pane-active-border-bg default + +# command line +set -g message-fg default +set -g message-bg default +set -g message-attr bright