-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
33 lines (26 loc) · 845 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
# detach instead of kill
bind-key x kill-pane
bind-key -n C-d detach
set -g default-terminal "screen-256color"
# windows start from 1
set -g base-index 1
setw -g pane-base-index 1
# prefix `ctrl + b` => `ctrl + a`
unbind C-b
set-option -g prefix `
bind-key ` send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
set -g status-interval 5
set -g status-bg default
set -g status-fg colour137
set -g status-left ""
set -g status-right '#[bg=default,bold] #h %d/%m#[bg=default,bold] %H:%M'
setw -g window-status-current-format ' #[bg=colour240]#I#[fg=colour249]:#[fg=colour255]#W#[fg=colour249]#F '
setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F '
# border
set-option -g pane-active-border-bg default
set-option -g pane-active-border-fg colour208