14 lines
256 B
Bash
14 lines
256 B
Bash
# mouse mode
|
|
set -g mouse on
|
|
|
|
# easy reloads
|
|
bind r source-file ~/.config/tmux/tmux.conf
|
|
|
|
# fix escape-time to prevent weird behaviour in vim
|
|
set -s escape-time 0
|
|
|
|
# use C-b s/h for splitting
|
|
unbind s
|
|
unbind h
|
|
bind s split-window -v
|
|
bind h split-window -h
|