config-files/.tmux.conf

21 lines
430 B
Plaintext
Raw Normal View History

2020-11-10 20:00:15 -05:00
setw -g mode-keys vi
set -g status-keys vi
2022-09-16 10:10:25 -04:00
set -g default-terminal "xterm-256color"
2020-11-10 20:00:15 -05:00
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# don't rename windows automatically
set-option -g allow-rename off
2021-03-10 01:09:49 -05:00
# add mouse scrolling
set -g mouse on
2020-11-10 20:00:15 -05:00
2021-03-10 01:09:49 -05:00
# smart pane switching with awareness of vim splits
2020-11-10 20:00:15 -05:00
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R