-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
41 lines (30 loc) · 1000 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
unbind C-b
set-option -g prefix C-x
set -s default-terminal 'tmux-256color'
set -ga terminal-overrides '*:Tc'
# i do not remember what the fuck this line is for but it does something
set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q'
set-option -g default-shell '/bin/zsh'
set-option -g renumber-windows on
bind -Tcopy-mode WheelUpPane send -N1 -X scroll-up
bind -Tcopy-mode WheelDownPane send -N1 -X scroll-down
set-window-option -g mouse on
bind c new-window -c "#{pane_current_path}"
bind s split-window -c "#{pane_current_path}"
bind v split-window -h -c "#{pane_current_path}"
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind ^h select-pane -L
bind ^j select-pane -D
bind ^k select-pane -U
bind ^l select-pane -R
set -s escape-time 0
set -g base-index 1
set -g pane-base-index 1
bind ^p previous-window
bind ^n next-window
bind a last-window
bind '"' choose-window
run-shell ~/.local/share/tmux/catppucin-tmux/catppuccin-mocha.tmuxtheme