.dotfiles/.tmux.conf

53 lines
1.9 KiB
Plaintext
Raw Normal View History

#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
2026-04-04 16:11:38 +00:00
set -g @plugin 'catppuccin/tmux#v2.1.3'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
2026-04-04 16:11:38 +00:00
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'catppuccin/tmux'
set -g @plugin 'omerxx/tmux-floax'
# set -g @plugin 'niksingh710/minimal-tmux-status'
2026-04-04 16:11:38 +00:00
# Einstellungen für den Zen-Look:
# set -g @minimal-tmux-justify "left"
# set -g @minimal-tmux-indicator false
# set -g @minimal-tmux-status "bottom" # oder "top"
# 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'
2026-04-04 16:11:38 +00:00
# Erlaubt Yazi & Neovim Bilder/Grafiken in Ghostty anzuzeigen
set -g allow-passthrough on
2026-04-04 16:11:38 +00:00
# Verhindert Verzögerungen beim Wechsel in den Normal-Mode in AstroNvim
set -s escape-time 0
# Stellt sicher, dass Ghostty die Farben korrekt darstellt
set -ag terminal-overrides ",xterm-256color:RGB"
2025-03-29 08:58:49 +00:00
# set -g @catppuccin_flavor 'macchiato' # or frappe, macchiato, mocha
set -g @catppuccin_flavor 'macchiato' # or frappe, macchiato, mocha
set -g @catppuccin_window_status_style 'rounded'
2023-05-13 14:38:44 +00:00
2025-03-29 08:58:49 +00:00
set -g status-left ""
2025-03-28 11:47:42 +00:00
2025-03-29 08:58:49 +00:00
set -g @catppuccin_window_number_position "right"
2025-03-28 11:47:42 +00:00
2025-03-29 08:58:49 +00:00
set -g @catppuccin_window_tabs_enabled on # or off to disable window_tabs
2023-05-13 14:38:44 +00:00
2025-03-29 08:58:49 +00:00
set -g status-right "#{E:@catppuccin_status_directory}"
set -ag status-right "#{E:@catppuccin_status_user}"
set -ag status-right "#{E:@catppuccin_status_session}"
set -ag status-right "#{E:@catppuccin_status_host}"
2023-05-13 14:38:44 +00:00
2026-04-04 16:11:38 +00:00
# set allow-passthrough on
2025-03-28 11:47:42 +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