-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
53 lines (45 loc) · 1.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
41
42
43
44
45
46
47
48
49
50
51
52
53
### tmux, meet vim; vim, tmux.
bind -r k select-pane -U
bind -r j select-pane -D
bind -r h select-pane -L
bind -r l select-pane -R
### prefix override
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
### pane splitting
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
### reload config
bind r source-file ~/.tmux.conf
### tmux QoL
#set -g mouse on
#bind-key x kill-pane
set -g default-terminal "tmux-256color"
set -g base-index 1
set -g detach-on-destroy off
set -g escape-time 1
set -g history-limit 10000
set -g renumber-windows on
set -g set-clipboard on
set -g status-interval 3
set-option -g allow-rename off
set-option -a terminal-features 'xterm-256color:RGB'
### maddening bells
set -g bell-action none
set -g visual-activity off
set -g visual-bell off
set -g visual-silence off
setw -g monitor-activity off
### tmux2k theme
set -g @tmux2k-theme "onedark"
set -g @tmux2k-icons-only true
set -g @tmux2k-refresh-rate 5
set -g @tmux2k-left-plugins " "
set -g @tmux2k-right-plugins "cpu ram"
### plugins
set -g @plugin '2kabhishek/tmux2k'
### tpm
run '/opt/homebrew/opt/tpm/share/tpm/tpm'