summary refs log tree commit diff
path: root/configs/rcs/tmux.conf
blob: 332e16fea3e5b762fba3367ba2a7e404a86c6240 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Avoid conflicting with emacs key bindings in the shell
unbind C-b
set -g prefix C-z

# 256-color terminal
set-option -g default-terminal "xterm-256color"

# Add truecolor support (tmux info | grep Tc)
set-option -ga terminal-overrides ",xterm-256color:Tc"

# Disable the status bar
set -g status off

# Let's use the mouse
set -g mouse on

# Do not rename the windows for me
set -g allow-rename off

# But renumber them as we delete
set -g renumber-windows on

# And starts indexing at 1, not 0
set -g base-index 1
setw -g pane-base-index 1