-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
61 lines (43 loc) · 1.54 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
# so that escapes register immidiately in vim
set -sg escape-time 0
unbind C-b
set -g prefix C-s
bind-key -r C-s send-prefix
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
bind-key -n C-h select-pane -L
bind-key -n C-j select-pane -D
bind-key -n C-k select-pane -U
bind-key -n C-l select-pane -R
set-option -g default-terminal "screen-256color"
# split panes with | and - and open the new panes at the current path
bind-key - split-window -v -c '#{pane_current_path}'
bind-key \\ split-window -h -c '#{pane_current_path}'
bind -n M-Left resize-pane -L 2
bind -n M-Right resize-pane -R 2
bind -n M-Down resize-pane -D 2
bind -n M-Up resize-pane -U 2
bind -n C-Left resize-pane -L 10
bind -n C-Right resize-pane -R 10
bind -n C-Down resize-pane -D 5
bind -n C-Up resize-pane -U 5
bind c new-window -c '#{pane_current_path}'
# start window numbering at 1 for easier switching
set -g base-index 1
setw -g pane-base-index 1
set-option -g renumber-windows on
bind-key b break-pane -d
bind-key C-j choose-tree
# scroll back farther
set -g history-limit 30000
# Use vim keybindings in copy mode
setw -g mode-keys vi
# styling
set -g status-bg black
set -g status-fg white
set-option -g status-keys "vi"
set-option -g status-left-length 50
set -g status-justify centre
set -g status-right "#[fg=brightblack,bg=black] %H:%M %d-%b-%y "
set -g window-status-separator "#[fg=brightblack,bg=black]|"
set -g window-status-current-format "#[fg=white,bg=black] #I #W #F "
set -g window-status-format "#[fg=brightblack,bg=black] #I #W #F "