-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
82 lines (68 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# remap prefix from 'C-b' to 'C-space'
unbind C-b
set-option -g prefix C-space
bind-key C-space send-prefix
# split panes using s and v
bind s split-window -v
bind v split-window -h
unbind '"'
unbind %
# reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf
# switch panes using hjkl vim style
bind h select-pane -L
bind l select-pane -R
bind k select-pane -U
bind j select-pane -D
######################
### DESIGN CHANGES ###
######################
# loud or quiet?
set-option -g visual-activity off
set-option -g visual-bell off
set-option -g visual-silence off
set-window-option -g monitor-activity off
set-option -g bell-action none
set -g default-terminal "screen-256color"
# The modes {
setw -g clock-mode-colour colour135
setw -g mode-attr bold
setw -g mode-fg colour8
setw -g mode-bg colour3
# }
# The panes { or split window
set -g pane-border-bg colour0
set -g pane-border-fg colour7
set -g pane-active-border-bg colour0
set -g pane-active-border-fg colour6
# }
# The statusbar { name tells itself
set -g status-justify left
set -g status-interval 2
set -g status-position top
set -g status-bg colour6
set -g status-fg colour0
set -g status-attr none
set -g status-left ''
set -g status-right '#[fg=colour0,bg=colour7,bold] %d/%m #[fg=colour7,bg=colour8,bold] %H:%M '
set -g status-right-length 50
set -g status-left-length 20
setw -g window-status-current-fg colour6
setw -g window-status-current-bg colour8
setw -g window-status-current-attr bold
setw -g window-status-current-format ' [#I]#[fg=colour15]:#[fg=colour15]#W#[fg=colour5,bold]#F '
setw -g window-status-fg colour8
setw -g window-status-bg colour6
setw -g window-status-attr none
setw -g window-status-format '|[#I]#[fg=colour8]:#[fg=colour8]#W#[fg=colour3]#F#[fg=colour8]|'
setw -g window-status-bell-attr bold
setw -g window-status-bell-fg colour15
setw -g window-status-bell-bg colour5
# }
# The messages {
set -g message-command-fg blue
set -g message-command-bg black
set -g message-attr bold
set -g message-fg colour0
set -g message-bg colour3
# }