-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.tmux.conf
More file actions
31 lines (26 loc) · 741 Bytes
/
.tmux.conf
File metadata and controls
31 lines (26 loc) · 741 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
# make tmux use C-a like screen
set -g prefix C-a
unbind C-b
bind C-a send-prefix
#unbind % # Remove default binding since we’re replacing
bind | split-window -h
bind - split-window -v
# act like vim in copy mode and other places
setw -g mode-keys vi
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key -r C-h select-window -t :-
bind-key -r C-l select-window -t :+
# set status bar colors
set -g status-bg black
set -g status-fg white
set -g status-left '#[fg=green]#H'
# highlight active window
set-window-option -g window-status-current-bg blue
# look good?
set -g default-terminal "screen-256color"
# Fig Tmux Integration: Enabled
source-file ~/.fig/tmux
# End of Fig Tmux Integration