diff --git a/tmuxrc b/tmuxrc new file mode 100644 index 0000000..89b8c65 --- /dev/null +++ b/tmuxrc @@ -0,0 +1,21 @@ +# Use Shift and arrows to switch panes +bind -n S-Left select-pane -L +bind -n S-Up select-pane -U +bind -n S-Down select-pane -D +bind -n S-Right select-pane -R + +# Set split keys +bind-key m split-window -v -c "#{pane_current_path}" +bind-key l split-window -h -c "#{pane_current_path}" + +bind-key Escape copy-mode +bind-key p paste-buffer +bind-key P choose-buffer + +# Easy config reload +bind-key r source-file ~/dot/tmuxrc \ + +set -g default-terminal "st-256color" +set -g prefix C-Space +bind C-Space send-prefix +