-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
47 lines (41 loc) · 1.2 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
# Set prefix to Ctrl-Space
unbind C-b
set -g prefix C-Space
bind Space send-prefix
set -g visual-activity on
#set -g pane-active-border-fg blue
#set -g pane-border-fg white
#set -g status-bg black
#set -g status-fg blue
set -g status-interval 1
set -g status-left-length 6
#set-window-option -g window-status-current-bg blue
#set-window-option -g window-status-current-fg black
setw -g aggressive-resize on
setw -g monitor-activity off
#set-option -g set-titles off
set-option -g default-terminal "screen-256color"
set -g base-index 1
setw -g automatic-rename
# Renumber windows sequentially after closing any of them.
set-option -g renumber-windows on
# Move between window splits using vi keys.
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Resize panes using vi keys.
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
bind -r P resize-pane -R 25
# Get default-option $PWD back.
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
# Set prefix to Ctrl-Space
unbind C-b
set -g prefix C-Space
bind Space send-prefix
# vim: set ft=tmux: