mirror of
https://github.com/chylex/dotfiles.git
synced 2025-02-14 21:46:05 +01:00
22 lines
719 B
Plaintext
22 lines
719 B
Plaintext
set -g default-terminal "screen-256color"
|
|
set -g escape-time 0
|
|
set -g history-limit 50000
|
|
set -g mouse on
|
|
|
|
set-window-option -g mode-keys vi
|
|
|
|
bind -T copy-mode-vi v send -X begin-selection
|
|
bind -T copy-mode-vi C-v send -X rectangle-toggle
|
|
bind -T copy-mode-vi M-v send -X rectangle-toggle
|
|
bind -T copy-mode-vi Enter send -X copy-selection-and-cancel
|
|
unbind -T copy-mode-vi MouseDragEnd1Pane
|
|
|
|
bind '"' split-window -c "#{pane_current_path}"
|
|
bind % split-window -hc "#{pane_current_path}"
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
bind -n S-Up move-pane -ht ".{up-of}"
|
|
bind -n S-Right move-pane -t ".{right-of}"
|
|
bind -n S-Left move-pane -t ".{left-of}"
|
|
bind -n S-down move-pane -ht ".{down-of}"
|