diff --git a/.tmux.conf b/.tmux.conf index 696b906..21d5f3f 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -26,7 +26,6 @@ bind x lock-server # screen ^C c unbind ^C bind ^C new-window -bind c bind c new-window # detach ^D d @@ -71,10 +70,6 @@ bind ^W list-windows unbind w bind w list-windows -# quit \ -unbind \ -bind \ confirm-before "kill-server" - # kill K k unbind K bind K confirm-before "kill-window" @@ -115,3 +110,35 @@ set -g mouse-select-pane on # status bar stuff set -g status-interval 2 set -g status-right "#(date) #H" + +#### COLOUR (Solarized 256) + +# default statusbar colors +set-option -g status-bg colour235 #base02 +set-option -g status-fg colour136 #yellow +set-option -g status-attr default + +# default window title colors +set-window-option -g window-status-fg colour244 #base0 +set-window-option -g window-status-bg default +#set-window-option -g window-status-attr dim + +# active window title colors +set-window-option -g window-status-current-fg colour166 #orange +set-window-option -g window-status-current-bg default +#set-window-option -g window-status-current-attr bright + +# pane border +set-option -g pane-border-fg colour235 #base02 +set-option -g pane-active-border-fg colour240 #base01 + +# message text +set-option -g message-bg colour235 #base02 +set-option -g message-fg colour166 #orange + +# pane number display +set-option -g display-panes-active-colour colour33 #blue +set-option -g display-panes-colour colour166 #orange + +# clock +set-window-option -g clock-mode-colour colour64 #green