From c2384317343f3dccf2c6846ec1c1f8de31fb7ff2 Mon Sep 17 00:00:00 2001 From: Ricardo WSL Debian Date: Wed, 28 Jan 2026 00:21:46 -0800 Subject: [PATCH] add: Tmux Super Minimal Config --- .../tmux_custom_theme/super_minimal.conf | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 configs/tmux_g/tmux_custom_theme/super_minimal.conf diff --git a/configs/tmux_g/tmux_custom_theme/super_minimal.conf b/configs/tmux_g/tmux_custom_theme/super_minimal.conf new file mode 100644 index 0000000..2c7ff19 --- /dev/null +++ b/configs/tmux_g/tmux_custom_theme/super_minimal.conf @@ -0,0 +1,43 @@ +set -g @plugin 'niksingh710/minimal-tmux-status' + +# These are the default values used inside the plugin to achieve the preview shown above. + +set -g @minimal-tmux-fg "#000000" +# set -g @minimal-tmux-bg "#698DDA" +set -g @minimal-tmux-bg "#af3a03" +set -g @minimal-tmux-justify "centre" +set -g @minimal-tmux-indicator-str " tmux " +set -g @minimal-tmux-indicator true +set -g @minimal-tmux-status "top" + +# Enables or disables the left and right status bar +set -g @minimal-tmux-right true +set -g @minimal-tmux-left false + +# expanded icon (fullscreen icon) +set -g @minimal-tmux-expanded-icon "󰊓 " + +# on all tabs (default is false) +# false will make it visible for the current tab only +set -g @minimal-tmux-show-expanded-icon-for-all-tabs true + +# To add or remove extra text in status bar +set -g @minimal-tmux-status-right-extra "" +set -g @minimal-tmux-status-left-extra "" + +# To make the selection box rounded () or edged <> +# Default is nothing, when set to true default is edged +set -g @minimal-tmux-use-arrow false +set -g @minimal-tmux-right-arrow "" +set -g @minimal-tmux-left-arrow "" + +# Not recommended to change these values +set -g @minimal-tmux-status-right "#S" +set -g @minimal-tmux-status-left "refer to code" + +# If getting strings cut in left status or right +# Here 20 is the length of the characters in the string +set -g status-right-length 20 +set -g status-left-length 20 + +run '~/.tmux/plugins/tpm/tpm'