dotfiles/tmux/.tmux.conf

31 lines
622 B
Plaintext
Raw Normal View History

2021-04-06 21:37:36 +00:00
set -g clock-mode-style 12
set -g default-command "${SHELL}"
2020-09-28 06:45:49 +00:00
set -g default-terminal "xterm-256color"
2021-04-06 21:37:36 +00:00
set -g history-limit 5000
2020-09-28 06:45:49 +00:00
set -g prefix C-q
set -sg escape-time 25
2021-04-06 21:37:36 +00:00
set -wg mode-keys vi
set -wg mouse on
2020-09-28 06:45:49 +00:00
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