From 02f1ee6a268ee5c73a4dd3d5e51ed489edf62461 Mon Sep 17 00:00:00 2001 From: staticsafe Date: Fri, 18 Apr 2014 14:43:16 -0400 Subject: [PATCH 1/3] Fix some keybindings. --- .tmux.conf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 696b906..45b2995 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 @@ -72,8 +71,8 @@ unbind w bind w list-windows # quit \ -unbind \ -bind \ confirm-before "kill-server" +unbind "\" +bind "\" confirm-before "kill-server" # kill K k unbind K From 944c014287299a82b6bb301759f5126f3ec468ab Mon Sep 17 00:00:00 2001 From: staticsafe Date: Fri, 18 Apr 2014 14:44:16 -0400 Subject: [PATCH 2/3] Remove erroneous keybindings. --- .tmux.conf | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 45b2995..7eef7c5 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -70,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" From d0ed70315e245a4764caefccd868d28cfe33df7d Mon Sep 17 00:00:00 2001 From: staticsafe Date: Fri, 18 Apr 2014 14:45:25 -0400 Subject: [PATCH 3/3] Add solarized tmux colours to config. Source - https://raw.githubusercontent.com/seebi/tmux-colors-solarized/master/tmuxcolors-256.conf --- .tmux.conf | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 7eef7c5..21d5f3f 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -110,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