21 lines
566 B
Bash
21 lines
566 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -g base-index 1
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'ofirgall/tmux-window-name'
|
|
set -g @plugin 'noscript/tmux-mighty-scroll'
|
|
set -g @plugin 'jabirali/tmux-tilish'
|
|
set -g @plugin 'catppuccin/tmux'
|
|
|
|
# Plugin options.
|
|
set -g @tilish-navigator 'on'
|
|
set -g @tilish-dmenu 'on'
|
|
set -g @tmux_window_name_use_tilde "True"
|
|
set -g @catppuccin_flavour 'macchiato'
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|