28 lines
644 B
Bash
28 lines
644 B
Bash
set -g default-terminal "screen-256color"
|
|
|
|
set -g history-limit 10000
|
|
|
|
#some vi behaviour
|
|
bind-key -r h select-pane -L
|
|
bind-key -r j select-pane -D
|
|
bind-key -r k select-pane -U
|
|
bind-key -r l select-pane -R
|
|
|
|
bind-key v split-window -h
|
|
bind-key s split-window -v
|
|
|
|
set-option -g mouse on
|
|
|
|
# start pane index at 1
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
# colors
|
|
set -g status-bg black
|
|
set -g status-fg white
|
|
set -g status-right '%Y.%m.%d %H:%M'
|
|
|
|
set-window-option -g window-status-current-style fg=black
|
|
set-window-option -g window-status-current-style fg=black,bg=cyan,bright
|
|
set-window-option -g window-status-activity-style fg=brightred
|