-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
40 lines (37 loc) · 1 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 C-a as prefix
# set -g prefix C-a
# bind C-a send-prefix
# unbind C-b
# VIM-like UX
# set -s escape-time 0
# set -g mode-keys vi
# set -g status-keys emacs
# bind x split-window -v
# bind v split-window -h
# bind -T copy-mode-vi 'v' send -X begin-selection
# bind -T copy-mode-vi 'y' send -X copy-selection
# bind p paste-buffer
# bind h select-pane -L
# bind j select-pane -D
# bind k select-pane -U
# bind l select-pane -R
# bind -r < resize-pane -L 4
# bind -r + resize-pane -D 1
# bind -r - resize-pane -U 1
# bind -r > resize-pane -R 4
# Other keybindings
# bind C-p previous-window
# bind C-n next-window
# Preference
set -g mouse off
set -g history-limit 16384
set -g display-time 4000
set -g allow-rename on
set -g base-index 1
set -g pane-base-index 1
set -g status-interval 4
set -g status-left "[#I.#P]"
set -g status-right "%F %H:%M:%S"
set -g window-status-format ""
set -g window-status-current-format "#W"
set -ga terminal-overrides ",*-256color*:Tc" # Enable true color for env with $TERM=*-256color*