-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.tmux.conf
31 lines (23 loc) · 792 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
29
30
31
set -g prefix C-q
unbind K
unbind k
bind K confirm-before "kill-window"
bind k confirm-before "kill-window"
bind D confirm-before -p "Confirm ? (y/n)" "source-file ~/.tmux/main"
bind S confirm-before -p "Confirm ? (y/n)" "source-file ~/.tmux/second"
bind R source-file ~/.tmux.conf \; display-message "Config reloaded..."
bind | split-window -h
bind - split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key b set-option status
set-window-option -g xterm-keys on
set-window-option -g xterm-keys on
source-file "${HOME}/.tmux/themes/cyan.tmuxtheme"
set-option -sg escape-time 10
set-option -g default-terminal "screen-256color"
set-option -g focus-events on
set -g @plugin 'tmux-plugins/tmux-yank'
run '~/.tmux/plugins/tpm/tpm'