-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
37 lines (29 loc) · 886 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
set -sg escape-time 5
set -g mouse on
set -g history-limit 100000
setw -g mode-keys vi
set-window-option -g mode-keys vi
set -g pane-border-status off
set -g pane-border-format "#{pane_index} #{pane_current_command}"
set -g pane-active-border-style fg=yellow
set -g default-terminal "screen-256color"
unbind C-b
set -g prefix C-q
set -g status-left '[#S] '
set -g status-right ''
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -r H resize-pane -L 7
bind -r J resize-pane -D 7
bind -r K resize-pane -U 7
bind -r L resize-pane -R 7
# color status bar
set -g status-bg yellow
set -g status-fg black
# highlight current window
set-window-option -g window-status-current-style bg=black,fg=yellow