20 lines
335 B
Plaintext
20 lines
335 B
Plaintext
# Rebind the Prefix
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
|
|
# Sane Split Commands
|
|
bind | split-window -h
|
|
bind - split-window -v
|
|
unbind '"'
|
|
unbind %
|
|
|
|
# Reload tmux config
|
|
bind r source-file ~/.config/tmux/tmux.conf
|
|
|
|
# Enable Mouse control
|
|
set -g mouse on
|
|
|
|
# Set Tmux TERM
|
|
set -g default-terminal 'tmux-256color'
|