blob: a144dbf741bb9bdcf3253bb3afede90543de61ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 256-color terminal
set-option -g default-terminal "screen-256color"
# Add truecolor support (tmux info | grep Tc)
set-option -ga terminal-overrides ",xterm-256color:Tc"
set -g mouse on
set -g prefix C-z
set -g allow-rename off
set -g renumber-windows on
set -g base-index 1
setw -g pane-base-index 1
|