summaryrefslogtreecommitdiffstats
path: root/.tmux.conf
blob: 86822a5228d4a3a82faf4cd43e793e01a004efc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set -g prefix C-x
bind C-x send-prefix
unbind C-b
setw -g mouse on

set -g default-terminal "screen-256color"

set -g base-index 1 # start window numbering with 1

set-option -g history-limit 10000
set-option -g allow-rename on
set-option -g set-titles on
set-option -g set-titles-string "#W"

bind-key r source-file ~/.tmux.conf \; display "Config reloaded!"

if-shell "test -e ~/.tmux.conf.local" "source-file ~/.tmux.conf.local"