diff options
Diffstat (limited to 'tmux.config')
-rw-r--r-- | tmux.config | 36 |
1 files changed, 6 insertions, 30 deletions
diff --git a/tmux.config b/tmux.config index 1cc9483..99049cf 100644 --- a/tmux.config +++ b/tmux.config @@ -1,7 +1,3 @@ -# Use Ctrl A instead of Ctrl b -#unbind C-b -#set -g prefix C-x - # Resize pane single keys bind-key + resize-pane -D 20 bind-key - resize-pane -U 20 @@ -44,43 +40,20 @@ bind-key b display-panes # Allow pbcopy inside of session set-option -g default-command "reattach-to-user-namespace -l zsh" +### COLOUR (Solarized dark) - -#### COLOUR (Solarized dark) - -## default statusbar colors +# default statusbar colors set-option -g status-bg colour66 #base02 set-option -g status-fg colour229 #yellow -#set-option -g status-attr default - -## default window title colors -#set-window-option -g window-status-fg colour20 #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 colour44 #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 colour46 #base01 +# pane border set-option -g pane-border-fg colour23 #base02 set-option -g pane-active-border-fg colour23 #base01 - ## message text set-option -g message-bg colour235 #base02 set-option -g message-fg colour196 #orange -## pane number display -#set-option -g display-panes-active-colour colour160 #blue -#set-option -g display-panes-colour colour15 #orange - -## clock -#set-window-option -g clock-mode-colour colour40 #green - set-option -g status on set-option -g status-interval 2 set-option -g status-justify "centre" @@ -101,3 +74,6 @@ bind-key C-b last-window # Use base 1 numbering, 0 base is a big stretch set -g base-index 1 setw -g pane-base-index 1 + +# Synchronize mode, how the fuck did I not know about this +bind a set-window-option synchronize-panes |