From 28da18cd19a596d83ea9e0a2a40fa2a382cd931b Mon Sep 17 00:00:00 2001 From: Johannes Rothe Date: Fri, 21 Sep 2018 13:37:30 +0200 Subject: [PATCH] tmux: add config --- tmux.conf | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 tmux.conf diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..4e3e60d --- /dev/null +++ b/tmux.conf @@ -0,0 +1,43 @@ +# remap prefix from 'C-b' to 'C-a' +unbind C-b +set-option -g prefix C-a +bind-key C-a send-prefix +# remap from 'n' for next to 'space' +setw -g xterm-keys on +bind-key Space next-window + +# THEME +#### 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 + +# bell +set-window-option -g window-status-bell-style fg=colour235,bg=colour160 #base02, red