dotfiles/auto/tmux/.tmux.conf

33 lines
714 B
Bash

set -g clock-mode-style 12
set -g default-command "${SHELL}"
set -g default-terminal "tmux-256color"
set -as terminal-features ",xterm-256color:RGB"
set -g history-limit 10000
set -g prefix C-q
set -sg escape-time 25
set -wg mode-keys vi
set -wg mouse on
unbind Up
unbind Down
unbind Left
unbind Right
bind C-q send-prefix
bind S set status
bind r source-file ~/.tmux.conf \; display "Reloaded tmux config."
bind s setw synchronize-panes
bind h split-window -h
bind v split-window -v
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
bind -r Left swap-window -dt -1
bind -r Right swap-window -dt +1