-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
38 lines (29 loc) · 933 Bytes
/
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
unbind C-b
set -g prefix C-space
bind Space copy-mode
bind C-space copy-mode
bind -Troot C-j select-pane -t:.+1
bind -Troot C-k select-pane -t:.-1
bind j select-pane -t:.+1
bind k select-pane -t:.+1
bind | split-window -h
bind '\' split-window -h
bind v split-window -h
bind - split-window
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'pbcopy'
bind -T copy-mode-vi v send-keys -X begin-selection
set -g status-fg colour8
set -g status-bg colour12
# set -g pane-active-border-fg colour8
# set -g pane-border-fg colour7
set -g status-left " "
set -g status-right ""
set -g base-index 1
set -g window-status-current-style "fg=colour8 bg=colour15"
set -g window-status-current-format " #I #W#F "
set -g window-status-format " #I #W#F "
set -g automatic-rename on
set -g automatic-rename-format "#{b:pane_current_path}"
set -s escape-time 10
set-window-option -g mode-keys vi
set -g default-terminal "xterm-256color"