-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
41 lines (28 loc) · 860 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
32
33
34
35
36
37
38
39
40
41
set -g default-terminal "screen-256color"
if 'infocmp tmux-256color > dev/null 2>&1' 'set -g default-terminal "tmux-256color"'
set-option -gw aggressive-resize on
setw -g xterm-keys on
set -s focus-events on
set -g base-index 1
set -g pane-base-index 1
set -g renumber-windows on
set -g monitor-activity on
set -g visual-activity on
set -g escape-time 0
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
bind Space last-window
bind C-Space switch-client -l
bind c new-window -c "#{pane_current_path}"
unbind %
bind | split-window -hc "#{pane_current_path}"
bind - split-window -vc "#{pane_current_path}"
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'laktak/extrakto'
set -g @plugin 'arcticicestudio/nord-tmux'
run '~/.config/tmux/plugins/tpm/tpm'