mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-06 01:14:48 -06:00
33 lines
900 B
Plaintext
33 lines
900 B
Plaintext
# 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 'git@github.com:user/plugin'
|
|
# set -g @plugin 'git@bitbucket.com:user/plugin'
|
|
|
|
set -g @plugin 'dracula/tmux'
|
|
|
|
# Config Dracula Theme
|
|
set -g @dracula-show-fahrenheit false
|
|
set -g @dracula-show-powerline true
|
|
set -g @dracula-show-network false
|
|
set -g @dracula-show-left-icon session
|
|
set -g @dracula-cpu-usage true
|
|
set -g @dracula-ram-usage true
|
|
set -g @dracula-day-month true
|
|
set -g @dracula-military-time true
|
|
set -g @dracula-show-flags true
|
|
|
|
set -g mouse on
|
|
|
|
# Set 256 colors
|
|
set -s default-terminal 'tmux-256color'
|
|
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|