-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtmux.conf.symlink
61 lines (51 loc) · 1.34 KB
/
tmux.conf.symlink
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'nhdaly/tmux-better-mouse-mode'
set -g @plugin 'niksingh710/minimal-tmux-status'
set -g default-terminal "screen"
set -g base-index 1
setw -g pane-base-index 1
set -g status-keys vi
set -g mode-keys vi
set -g mouse on
setw -g aggressive-resize on
setw -g clock-mode-style 12
set -s escape-time 0
set -g history-limit 20000
unbind c
unbind i
unbind l
unbind s
unbind w
# automatically renumber tmux windows
set -g renumber-windows on
bind-key -T copy-mode-vi 'v' send-keys -X begin-selection
bind w neww
bind m choose-window
bind a choose-session
bind c kill-pane
bind t set status
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind ^h resize-pane -L
bind ^j resize-pane -D
bind ^k resize-pane -U
bind ^l resize-pane -R
bind v split-window -h
bind s split-window
bind : command-prompt
bind Escape copy-mode
set -g set-titles on
set -g set-titles-string 'tmux: #T'
set -g repeat-time 100
setw -g alternate-screen on
set -g display-panes-time 1000
setw -g automatic-rename on
set -g @minimal-tmux-left false
set -g @minimal-tmux-justify "left"
set -g @minimal-tmux-bg "yellow"
run '~/.tmux/plugins/tpm/tpm'