dotfiles/tmux/.tmux.conf
2021-12-31 23:47:31 -08:00

31 lines
609 B
Bash

set -g default-terminal "xterm-256color"
set-window-option -g mode-keys vi
set -g prefix C-q
setw -g mouse on
set -g clock-mode-style 12
set-option -g history-limit 5000
set -sg escape-time 25
unbind Up
unbind Down
unbind Left
unbind Right
bind C-q send-prefix
bind S set status
# Reload with ctrl-r
bind r source-file ~/.tmux.conf \; display "Reloaded tmux config."
bind s setw synchronize-panes
bind _ split-window -v
bind | split-window -h
bind H split-window -f -h
bind V split-window -f -v
bind -r C-h select-pane -L
bind -r C-j select-pane -D
bind -r C-k select-pane -U
bind -r C-l select-pane -R