-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
62 lines (46 loc) · 1.3 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Easy config reload
bind R source ~/.tmux.conf\; display "~/.tmux.conf sourced!"
set -g base-index 1
set -g visual-activity off
set -g visual-bell off
set -g visual-silence off
setw -g monitor-activity off
set -g bell-action none
# Automatically set window title
#set-window-option -g automatic-rename on
set-option -g allow-rename off
# modes
setw -g clock-mode-colour colour5
setw -g mode-style 'fg=colour1 bg=colour18 bold'
# Vim navigates
setw -g mode-keys vi
# panes
set -g pane-border-style 'fg=colour19 bg=colour0'
set -g pane-active-border-style 'bg=colour0 fg=colour9'
set -g prefix C-a
unbind C-b
bind C-a send-prefix
setw -g mouse on
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# Select the Panes with C-a key and vim key
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
#statusbar
#set -g status-bg black
#set -g status-fg white
set -g status-left-length 20
set -g status-right-length 50
#set -g status-position bottom
#set -g status-justify left
set -g status-style 'bg=colour60 dim fg=white dim'
#set -g status-left ''
#set -g status-right '#[fg=colour233,bg=colour19] %d/%m #[fg=colour233,bg=colour8] %H:%M:%S '
#set -g status-right-length 50
#set -g status-left-length 20
#bind-key -r l run-shell "develop"