15 lines
328 B
Bash
15 lines
328 B
Bash
set -ga terminal-overrides ",screen-256color*:Tc"
|
|
set-option -g default-terminal "screen-256color"
|
|
set -s escape-time 0
|
|
|
|
unbind C-b
|
|
set-option -g prefix C-s
|
|
bind-key C-s send-prefix
|
|
|
|
set -g status-style 'bg=#333333 fg=#5eacd3'
|
|
|
|
bind -r k select-pane -U
|
|
bind -r j select-pane -D
|
|
bind -r h select-pane -L
|
|
bind -r l select-pane -R
|