neodot/.tmux.conf

16 lines
274 B
Plaintext
Raw Permalink Normal View History

2024-11-14 12:51:23 +00:00
# Remap leader to ctrl+a
unbind C-b
2024-11-19 00:49:19 +00:00
set-option -g prefix C-p
bind-key C-p send-prefix
2024-11-14 12:51:23 +00:00
# Quick release config file
bind r source-file ~/.tmux.conf
# Enable mouse usage
set -g mouse on
2024-11-14 13:05:28 +00:00
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R