24 lines
473 B
Plaintext
24 lines
473 B
Plaintext
# Change prefix to Ctrl-a
|
|
unbind C-b
|
|
set -g prefix C-a
|
|
|
|
# Prevent weird delay in Vim
|
|
set -s escape-time 0
|
|
|
|
# Make tabs count from 1
|
|
set -g base-index 1
|
|
|
|
# Key binding to reload config file
|
|
bind r source-file ~/.tmux.conf \; display "Reloaded config."
|
|
|
|
# Customize bar
|
|
set -g status-style fg=default,bg=default
|
|
set -g status-left ''
|
|
set -g status-right ''
|
|
set -g status-justify centre
|
|
|
|
bind h select-pane -L
|
|
bind j select-pane -D
|
|
bind k select-pane -U
|
|
bind l select-pane -R
|