Adam Richardson's Site

Tmux Config

Table of Contents

<2022-05-01 Sun>

Config

# Term
set -g default-terminal screen-256color
set -ag terminal-overrides ",xterm-256color:Tc"

# ascii fallback for ACS
#set-option -ga terminal-overrides ',*:enacs@:smacs@:rmacs@:acsc@'

# start at index 1
set -g base-index 1
setw -g pane-base-index 1

# Change prefix key
unbind C-b
set-option -g prefix C-t
bind-key C-t send-prefix

# Status Bar
set-option -g status-style bg=red
set-option -g renumber-windows on

set -g mode-keys emacs
set -g status-keys emacs
  • If you want to change a running session to use emacs keys use <PREFIX>:set-option status-keys emacs and <PREFIX>:set-option mode-keys emacs.