22 lines
586 B
Text
22 lines
586 B
Text
|
set -g @plugin 'tmux-plugins/tpm'
|
||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||
|
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
|
||
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||
|
set -g @plugin 'catppuccin/tmux#latest'
|
||
|
|
||
|
set -g @catppuccin_flavor 'mocha'
|
||
|
|
||
|
unbind C-b
|
||
|
set-option -g prefix C-a
|
||
|
bind-key C-a send-prefix
|
||
|
setw -g mode-keys vi
|
||
|
|
||
|
set-option -g allow-rename off
|
||
|
|
||
|
# Set new panes to open in current directory
|
||
|
bind c new-window -c "#{pane_current_path}"
|
||
|
bind '"' split-window -c "#{pane_current_path}"
|
||
|
bind % split-window -h -c "#{pane_current_path}"
|
||
|
|
||
|
run '~/.tmux/plugins/tpm/tpm'
|