diff options
-rw-r--r-- | tmux.conf | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -19,7 +19,7 @@ bind-key r source-file ~/.tmux.conf # mouse support setw -g mouse on -# resolved key forwarding problem +# resolved key forwarding problem set-window-option -g xterm-keys on # had some struggle with vim key delay @@ -27,12 +27,12 @@ set -s escape-time 0 # split settings bind-key v split-window -h -bind-key s split-window +bind-key s split-window # maximize current pane bind-key f resize-pane -Z # overwrites find window -# move between splits +# move between splits bind-key k select-pane -U bind-key j select-pane -D bind-key h select-pane -L @@ -44,22 +44,23 @@ bind-key -t vi-copy 'v' begin-selection bind-key -t vi-copy 'y' copy-selection bind-key -t vi-copy 'C-a' start-of-line bind-key -t vi-copy 'C-e' end-of-line -bind-key C-v copy-mode -bind-key C-p paste-buffer +bind-key C-b choose-buffer +bind-key C-v copy-mode +bind-key C-p paste-buffer ### Colour Settings # default statusbar colors -set-option -g status-bg colour235 +set-option -g status-bg colour235 set-option -g status-fg colour208 # cmd line colors -set-option -g message-bg colour235 +set-option -g message-bg colour235 set-option -g message-fg colour208 # non-active window title colors -set-window-option -g window-status-fg colour244 +set-window-option -g window-status-fg colour244 set-window-option -g window-status-bg default # active window title colors @@ -67,7 +68,7 @@ set-window-option -g window-status-current-fg colour255 set-window-option -g window-status-current-bg colour208 # pane border -set-option -g pane-border-fg colour235 +set-option -g pane-border-fg colour235 set-option -g pane-active-border-fg colour208 # pane number display |