41 lines
995 B
Bash
41 lines
995 B
Bash
# KEYS
|
|
# remap prefix from 'C-b' to 'C-a'
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
# remap from 'n' for next to 'space'
|
|
setw -g xterm-keys on
|
|
bind-key Space next-window
|
|
# vim style switch
|
|
bind h select-pane -L
|
|
bind j select-pane -D
|
|
bind k select-pane -U
|
|
bind l select-pane -R
|
|
|
|
# statusbar
|
|
set -g status-right '#[fg=colour242]#S'
|
|
set -g status-left ' '
|
|
set -g window-status-format '#I:#W'
|
|
set -g window-status-current-format '#I:#W'
|
|
set -g allow-rename off
|
|
|
|
# THEME
|
|
#### COLOUR
|
|
# default statusbar colors
|
|
set-option -g status-bg colour232
|
|
set-option -g status-fg colour239
|
|
set-option -g status-attr default
|
|
|
|
# border
|
|
set -g pane-border-fg colour234
|
|
set -g pane-border-bg default
|
|
set -g pane-active-border-fg colour236
|
|
set -g pane-active-border-bg default
|
|
|
|
# active window title colors
|
|
set-window-option -g window-status-current-fg colour231
|
|
set-window-option -g window-status-current-bg default
|
|
|
|
# bell
|
|
set-window-option -g window-status-bell-style fg=colour232,bg=colour253
|