2023-02-09 13:18:52 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-02-19 09:59:49 +00:00
|
|
|
|
2023-02-09 15:47:44 +00:00
|
|
|
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'
|
2023-02-14 22:38:18 +00:00
|
|
|
set -g @plugin 'catppuccin/tmux'
|
2023-02-09 15:47:44 +00:00
|
|
|
|
|
|
|
# Plugin options.
|
2023-02-09 22:09:51 +00:00
|
|
|
set -g @tilish-navigator 'on'
|
2023-02-09 15:47:44 +00:00
|
|
|
set -g @tilish-dmenu 'on'
|
2023-02-09 16:49:43 +00:00
|
|
|
set -g @tmux_window_name_use_tilde "True"
|
2023-02-14 22:38:18 +00:00
|
|
|
set -g @catppuccin_flavour 'macchiato'
|
2023-02-09 15:47:44 +00:00
|
|
|
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|