-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
34 lines (28 loc) · 840 Bytes
/
tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
set -g default-terminal "screen-256color"
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
######################
### DESIGN CHANGES ###
######################
# panes
set -g pane-border-fg colour12
set -g pane-border-bg default
set -g pane-active-border-fg colour12
set -g pane-active-border-bg default
## Status bar design
# status line
set -g status-justify left
set -g status-bg default
set -g status-fg colour12
set -g status-interval 2
# window status
setw -g window-status-format "#[fg=colour7]#[bg=colour243] #I #W "
setw -g window-status-current-format "#[bg=colour221]#[fg=colour9][#I]#[bg-colour221]#[fg=colour1] #W "
set -g window-style 'fg=colour247,bg=colour236'
set -g window-active-style 'fg=colour247,bg=black'