blob: 453cfafb729e44b7b04b24f92e24e0990e5067fa (
plain) (
tree)
|
|
# 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"
# Disable the status bar
set -g status off
# Let's use the mouse
set -g mouse on
# Avoid conflicting with emacs key bindings in the shell
set -g prefix C-z
# 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
|