19 lines
518 B
Bash
19 lines
518 B
Bash
# Enable mouse
|
|
set -g mouse on
|
|
|
|
# Window numbering from 1
|
|
set -g base-index 1
|
|
set -g pane-base-index 1
|
|
set-window-option -g pane-base-index 1
|
|
set-option -g renumber-windows on
|
|
|
|
# Increase history
|
|
set -g history-limit 10000
|
|
|
|
# "Tab" look on status bar
|
|
set -g status on
|
|
set -g status-style "bg=colour237,fg=white"
|
|
set -g window-status-separator " "
|
|
set -g window-status-format " #[fg=colour250,bg=colour236] #{?window_last_flag, ,}#I:#W "
|
|
set -g window-status-current-format " #[fg=colour16,bg=colour81,bold] #I:#W "
|