-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
36 lines (28 loc) · 934 Bytes
/
.tmux.conf
File metadata and controls
36 lines (28 loc) · 934 Bytes
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
unbind C-b
set -g prefix C-space
bind C-space send-prefix
# Kill window
bind q killw
# Switch panes with prefix + hjkl
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Cycle windows with prefix + i/o
bind i previous-window
bind o next-window
# Renumber windows
bind r movew -r
# When splitting windows, keep CWD
bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
set-window-option -g mode-keys vi
set -g status-left " "
set -g status-right "%I:%M %p %Y-%m-%d "
setw -g window-status-current-format "#[fg=blue,bg=green]\ue0b2#[fg=default,bg=blue]#I:#W#[fg=blue,bg=green]\ue0b0"
set -g pane-border-lines heavy
set -g pane-border-style fg=green
set -g pane-active-border-style fg=brightgreen
# Disabled these becase vim doesn't respect tmux window colors
# set -g window-style bg=#3b4144
# set -g window-active-style fg=default,bg=default