-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux
53 lines (40 loc) · 1.07 KB
/
tmux
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
set-option -g focus-events on
# sets scrollback
set-option -g history-limit 9000
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# remove delay
set -s escape-time 1
# move between panes: vim-like
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# resize panes: vim-like
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
# visual notification
setw -g monitor-activity on
set -g visual-activity on
# set status bar colors
set -g status-fg white
set -g status-bg black
# center window list in status bar
set -g status-justify centre
# status bar left
set -g status-left-length 40
set -g status-left "#[fg=green]Session: [ #S ] #[fg=yellow]#I #[fg=cyan]#P"
# status bar right
set -g status-right "#[fg=cyan][ #h ] %d %b %R"
# switch between sessions
bind -r ( switch-client -p
bind -r ) switch-client -n
# Use vim keybindings in copy mode
setw -g mode-keys vi