-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
28 lines (21 loc) · 828 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
set-window-option -g mode-keys vi
bind j select-pane -D
bind k select-pane -U
bind h select-pane -L
bind l select-pane -R
bind | split-window -h
bind - split-window -v
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r H resize-pane -L 5
bind -r L resize-pane -R 5
#set -g pane-border-fg white
#set -g pane-active-border-fg cyan
#set -g pane-active-border-bg cyan
set -g default-terminal "screen-256color"
# To avoid this warning "warning: reattach-to-user-namespace: unsupported new OS, trying as if it were 10.10":
# reinstall:
# brew uninstall --force reattach-to-user-namespace
# brew install reattach-to-user-namespace
if-shell 'uname | grep -q Darwin' 'set -g default-shell $SHELL; set -g default-command "reattach-to-user-namespace -l ${SHELL}"' ''
source-file "${HOME}/.tmux-themepack/basic.tmuxtheme"