From 94648815dcd6f52f7245cc3477c6b4ce22315038 Mon Sep 17 00:00:00 2001 From: Xevion Date: Fri, 8 Nov 2024 00:07:17 -0600 Subject: [PATCH] Add ~/.tmux.conf --- home/dot_tmux.conf | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 home/dot_tmux.conf diff --git a/home/dot_tmux.conf b/home/dot_tmux.conf new file mode 100644 index 0000000..89c24be --- /dev/null +++ b/home/dot_tmux.conf @@ -0,0 +1,32 @@ +# 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'