feat: Add node version manager

This commit is contained in:
2026-06-20 09:18:11 +05:30
parent e3041b755b
commit e669fdec32
4 changed files with 160 additions and 1 deletions

View File

@@ -17,12 +17,13 @@ require_bash
# Registry of installers
declare -A INSTALLERS=(
[node]="Install Node.js (LTS) and NVM"
[nvim]="Install Neovim 0.11.7 and configuration"
[yazi]="Install Yazi terminal file manager and dependencies"
[zoxide]="Install Zoxide directory jumper"
)
# Order in which installers should be displayed
INSTALLER_KEYS=(nvim yazi zoxide)
INSTALLER_KEYS=(node nvim yazi zoxide)
SCRIPT_NAMES="${1:-}"
if [ -z "$SCRIPT_NAMES" ] || [ "$SCRIPT_NAMES" = "-h" ] || [ "$SCRIPT_NAMES" = "--help" ]; then