21 lines
544 B
Bash
21 lines
544 B
Bash
set -g default-terminal "tmux-256color"
|
|
set -s escape-time 0
|
|
set -g base-index 1
|
|
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
bind-key a send-prefix
|
|
|
|
# vi key movement for copy/paste mode
|
|
# set-window-option -g mode-keys vi
|
|
# bind -T copy-mode-vi v send-keys -X begin-selection
|
|
# bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel
|
|
|
|
bind r source-file $HOME/.config/tmux/tmux.conf \; display-message "tmux.conf reloaded"
|
|
|
|
bind -r h select-pane -L
|
|
bind -r j select-pane -D
|
|
bind -r k select-pane -U
|
|
bind -r l select-pane -R
|