-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
50 lines (36 loc) · 1.52 KB
/
Copy path.tmux.conf
File metadata and controls
50 lines (36 loc) · 1.52 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
set -g base-index 1
set -g renumber-windows on
set -g status-left ' #[fg=#88507D,bold]#{s/root//:client_key_table} '
set -g status-right '#[fg=#88507D,bold] [#S]#[fg=#88507D,bold] [%d/%m] #[fg=#88507D,bold][%I:%M%p] '
set -g status-style fg='#88507D',bg='#C6BDB9'
set -g window-status-current-style fg='#88507D',bg='#F0EDEC',bold
set -g pane-border-style fg='#88507D'
set -g pane-active-border-style fg='#88507D'
set -g message-style fg='#F0EDEC',bg='#CBD9E3'
set -g display-panes-active-colour '#88507D'
set -g display-panes-colour '#88507D'
set -g clock-mode-colour '#88507D'
set -g mode-style fg='#F0EDEC',bg='#CBD9E3'
set -goqF @window-left-separator '#[fg=#D6CDC9,bg=#C6BDB9]'
set -goqF @window-right-separator '#[fg=#D6CDC9,bg=#C6BDB9]'
setw -g window-status-format '#{@window-left-separator}#[bg=#D6CDC9] #[fg=#2C363C]#I #W #F #[bg=#F0EDEC]#{@window-right-separator}'
setw -g window-status-current-format '#{@window-left-separator}#[bg=#D6CDC9] #[fg=#2C363C]#I #W #F #[bg=#F0EDEC]#{@window-right-separator}'
set -g mouse on
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind-key -n M-1 select-window -t:1
bind-key -n M-2 select-window -t:2
bind-key -n M-3 select-window -t:3
bind-key -n M-4 select-window -t:4
bind-key -n M-5 select-window -t:5
bind-key -n M-6 select-window -t:6
bind-key -n M-7 select-window -t:7
bind-key -n M-8 select-window -t:8
bind-key -n M-9 select-window -t:9
bind-key -n M-0 select-window -t:10
bind r source-file ~/.tmux.conf