diff options
-rw-r--r-- | tmux/tmux.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 5ff10c1..ce944d4 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -2,3 +2,20 @@ unbind C-b set -g prefix C-a bind C-a send-prefix + +# send prefix to nested instace +bind-key -n C-b send-keys C-a + +set-option -g history-limit 5000 + +bind c new-window -c "#{pane_current_path}" + +bind -n M-Left select-pane -L +bind -n M-Right select-pane -R +bind -n M-Up select-pane -U +bind -n M-Down select-pane -D + +set -g window-status-current-style 'underscore' +set -g status-style bg=darkblue + +set -g set-clipboard |