-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
43 lines (31 loc) · 1.03 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
unbind-key C-b
set-option -g prefix C-a
bind-key C-a send-prefix
set -s escape-time 5
set -g base-index 1
set -g pane-base-index 1
setw -g mouse on
set-option -g mouse on
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 -n C-Tab next-window
bind-key -n C-S-Tab previous-window
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'nhdaly/tmux-better-mouse-mode'
set -g @plugin 'egel/tmux-gruvbox'
set -g @tmux-gruvbox 'dark'
# set -g @plugin 'lawabidingcactus/tmux-gruvbox-truecolor'
# set-option -as terminal-overrides ",xterm*:RGB"
# set-option -sa terminal-features ",xterm-kitty:RGB"
set -g default-terminal "tmux-256color"
# tell Tmux that outside terminal supports true color
set -ga terminal-overrides ",xterm-256color*:Tc"
set-option -ga terminal-overrides "alacritty:Tc"
set-option -g default-command /usr/local/bin/fish
set-option -g default-shell /usr/local/bin/fish
run '~/.tmux/plugins/tpm/tpm'