10 lines
271 B
Text
10 lines
271 B
Text
|
# 24-bit color support
|
||
|
# https://gist.github.com/andersevenrud/015e61af2fd264371032763d4ed965b6
|
||
|
set-option -g default-terminal "tmux-256color"
|
||
|
set-option -sg terminal-overrides ",*:RGB"
|
||
|
|
||
|
# Swap C-b for C-a
|
||
|
set-option -g prefix C-a
|
||
|
unbind-key C-b
|
||
|
bind-key C-a send-prefix
|