-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
60 lines (47 loc) · 1.61 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
54
55
56
57
58
59
set -g default-terminal "screen-256color"
# Reload tmux config
unbind r
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
set-option -g status-position bottom
set -g prefix C-a
unbind C-b
bind C-a send-prefix
set -g mouse on
# set-option -g mode-keys vi
set -g default-terminal "tmux-256color"
set -ag terminal-overrides ",xterm-256color:RGB"
# Start windows and panes at 1, not 0
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
# Open panes in current path
unbind %
unbind '"'
bind '|' split-window -h -c "#{pane_current_path}"
bind "_" split-window -v -c "#{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 'tmux-plugins/tmux-sensible'
set -g @plugin 'jimeh/tmuxifier'
set -g @plugin 'omerxx/tmux-sessionx'
# set -g @plugin 'dracula/tmux'
set -g @plugin "janoamaral/tokyo-night-tmux"
set -g @plugin "christoomey/vim-tmux-navigator"
set -g @catppuccin_flavour 'mocha'
set -g @tokyo-night-tmux_show_datetime 0
set -g @tokyo-night-tmux_show_path 1
set -g @tokyo-night-tmux_path_format relative # 'relative' or 'full'
set -g @tokyo-night-tmux_window_id_style dsquare
set -g @tokyo-night-tmux_pane_id_style hsquare
set -g @tokyo-night-tmux_zoom_id_style dsquare
set -g @tokyo-night-tmux_show_git 0
set -g @sessionx-bind 's'
set -g @sessionx-filter-current 'false'
set -g @sessionx-additional-options "--color pointer:9,spinner:92,marker:46"
set -g @sessionx-x-path "~/src/"
set -g @sessionx-zoxide-mode 'on'
run -b '~/.tmux/plugins/tpm/tpm'