dottmux/tmux.conf
2024-04-16 21:44:39 -07:00

26 lines
633 B
Plaintext

# easy reload config
bind-key C-r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded."
# C-b is not acceptable -- Vim uses it
set-option -g prefix C-q
# Set window split
bind-key C-v split-window -h
bind-key C-s split-window
# Allows us to use C-q q <command> to send commands to a TMUX session inside
# another TMUX session
bind-key q send-prefix
# hjkl pane traversal
bind C-h select-pane -L
bind C-j select-pane -D
bind C-k select-pane -U
bind C-l select-pane -R
set -g default-terminal "xterm-256color"'
set -ga terminal-overrides ",xterm-256color:Tc"'
# Vi copypaste mode
set-window-option -g mode-keys vi