-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
79 lines (61 loc) · 1.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Map PREFIX to ctrl+a and ubnind default
set -g prefix C-a
unbind C-b
# allow mouse scrolling and selecting
set -g mode-mouse on
setw -g mode-mouse copy-mode
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# fix tmux vim clipboard
# must do brew install reattach-to-user-namespace first
#set -g default-command "reattach-to-user-namespace -l $SHELL"
# enable vim keybindings for navigating buffers
setw -g mode-keys vi
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
# shorten key relay time
set -sg escape-time 1
# Allow reloading with key binding and show message
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# double ctrl+a lets ctrl+a through to the app
bind C-a send-prefix
# remap the pane splitting
bind | split-window -h
bind - split-window -v
# make moving between panes like vim
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# bindings for moving left and right through windows
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
# Allow resizing with uppercase movement keys
set -g repeat-time 1000
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
set -g default-terminal "screen-256color"
set -g status-fg white
set -g status-bg black
# style regular windows in status bar
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
# style active window in status bar
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
# set pane colors
set -g pane-border-fg green
set -g pane-border-bg black
set -g pane-active-border-fg white
set -g pane-active-border-bg yellow
# command line
set -g message-fg white
set -g message-bg black
set -g message-attr bright
set -g status-right "#h"
set -g status-justify centre
setw -g monitor-activity on
set -g visual-activity on