22 lines
599 B
Plaintext
22 lines
599 B
Plaintext
set-option -g default-shell /bin/bash
|
|
set -g default-terminal 'screen-256color'
|
|
set-option -sa terminal-features ',xterm-256color:RGB:smcup@:rmcup@'
|
|
set-option -sg escape-time 10
|
|
set-option -g set-titles on
|
|
set-option -g set-titles-string "tmux - #W"
|
|
set-option -g focus-events on
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
set -g status-bg black
|
|
set -g status-fg white
|
|
set -g window-status-current-style bg=blue
|
|
set -g prefix C-a
|
|
set -g mouse on
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
bind h select-pane -L
|
|
bind j select-pane -D
|
|
bind k select-pane -U
|
|
bind l select-pane -R
|