-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmux.conf
40 lines (29 loc) · 1.09 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
# Use vim keybindings in copy mode
setw -g mode-keys vi
#set-option -g default-command "reattach-to-user-namespace -l bash"
# set-option -g default-command "reattach-to-user-namespace -l fish"
# Setup 'v' to begin selection as in Vim
#bind-key -t vi-copy v begin-selection
#bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
# Update default binding of `Enter` to also use copy-pipe
#unbind -t vi-copy Enter
#bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
# improve colors
set -g default-terminal 'screen-256color'
set -ga terminal-overrides ',screen-256color:Tc'
# soften status bar color from harsh green to light gray
set -g status-bg '#666666'
set -g status-fg '#aaaaaa'
# remove administrative debris (session name, hostname, time) in status bar
set -g status-left ''
set -g status-right ''
# act like vim
set-window-option -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-option -sg escape-time 10
set-option -g focus-events on