-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_tmux.conf
50 lines (41 loc) · 1.11 KB
/
dot_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
## Make it use C-a, similar to screen..
unbind C-b
set -g prefix C-a
## Custom keys
# Slipt window
unbind %
bind-key | split-window -h
bind-key - split-window -v
# Switch window
unbind l
bind-key C-a last-window
## Reload keys
bind r source-file ~/.tmux.conf
set -g history-limit 1000
## THEME
set -g status-utf8 on
set -g status-bg red
set -g status-fg white
set -g status-interval 60
set -g status-left-length 30
set -g status-left ' » tmux [#S]#[default]'
set -g status-right-length 50
set -g status-right '»» #[fg=black]#(whoami)@#H#[default] #[fg=gray]%Y-%m-%d %H:%M #[default]'
## Set window notifications
set -g visual-activity on
set -g visual-content on
set-window -g monitor-activity on
set-window -g automatic-rename on
## Highlight active window
set-window -g window-status-current-fg white
set-window -g window-status-current-bg black
## Pane border and colors
set -g pane-active-border-fg white
set -g pane-border-fg white
## Enable mouse
set -g mouse-select-pane on
set-window -g mode-keys vi
set-window -g mode-mouse on
## Use F3 F4 fast switch
bind-key -n F3 previous-window
bind-key -n F4 next-window