2023-05-11 20:57:34 +00:00
|
|
|
#if-shell 'env "$POWERLINE_CONFIG_COMMAND" tmux setup' '' 'run-shell "powerline-config tmux setup"'
|
|
|
|
set-window-option -g xterm-keys on
|
|
|
|
set -g set-titles on
|
|
|
|
set -g set-titles-string '#{session_name}: #{window_name}'
|
|
|
|
|
|
|
|
# List of plugins
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
|
|
|
|
# Other examples:
|
|
|
|
# set -g @plugin 'github_username/plugin_name'
|
|
|
|
# set -g @plugin 'github_username/plugin_name#branch'
|
|
|
|
# set -g @plugin 'git@github.com:user/plugin'
|
|
|
|
# set -g @plugin 'git@bitbucket.com:user/plugin'
|
|
|
|
|
|
|
|
set -g @plugin 'catppuccin/tmux'
|
|
|
|
set -g @catppuccin_flavour 'macchiato' # or frappe, macchiato, mocha
|
2023-05-13 14:38:44 +00:00
|
|
|
|
|
|
|
set -g @catppuccin_window_tabs_enabled on # or off to disable window_tabs
|
2025-03-28 11:47:42 +00:00
|
|
|
set -g @catppuccin_window_left_separator ""
|
|
|
|
set -g @catppuccin_window_right_separator " "
|
|
|
|
set -g @catppuccin_window_middle_separator " █"
|
|
|
|
set -g @catppuccin_window_number_position "right"
|
|
|
|
|
|
|
|
#set -g @catppuccin_window_default_fill "number"
|
|
|
|
#set -g @catppuccin_window_default_text "#W"
|
|
|
|
|
|
|
|
#set -g @catppuccin_window_current_fill "number"
|
|
|
|
#set -g @catppuccin_window_current_text "#W"
|
|
|
|
|
|
|
|
#set -g @catppuccin_status_modules_right "directory user host session"
|
|
|
|
#set -g @catppuccin_status_left_separator " "
|
|
|
|
#set -g @catppuccin_status_right_separator ""
|
|
|
|
#set -g @catppuccin_status_right_separator_inverse "no"
|
|
|
|
#set -g @catppuccin_status_fill "icon"
|
|
|
|
#set -g @catppuccin_status_connect_separator "no"
|
|
|
|
|
|
|
|
#set -g @catppuccin_directory_text "#{pane_current_path}""
|
|
|
|
|
2023-05-13 14:38:44 +00:00
|
|
|
#set -g @catppuccin_date_time "%Y-%m-%d %H:%M"
|
|
|
|
|
|
|
|
set -g @catppuccin_date_time "off"
|
|
|
|
set -g @catppuccin_user "off"
|
|
|
|
set -g @catppuccin_host "on"
|
|
|
|
|
2025-03-28 11:47:42 +00:00
|
|
|
set -g @catppuccin_date_time "%Y-%m-%d %H:%M"
|
|
|
|
|
2023-05-11 20:57:34 +00:00
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|
2025-03-28 11:47:42 +00:00
|
|
|
# vim: ft=tmux
|