From 79a2beeb4e7b581c7d74c97aeeceba50ba20b821 Mon Sep 17 00:00:00 2001 From: Jose Jimenez <90982925+jjsalinas@users.noreply.github.com> Date: Thu, 19 Feb 2026 20:23:38 +0100 Subject: [PATCH] Revise README installation instructions and options Updated installation instructions and fixed formatting. --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e0cb2ed..ef82cf1 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,7 @@ This setup is focused on: ## Install Clone the repository and run the installer: - -```bash +``` git clone https://github.com/jjsalinas/dotfiles.git cd dotfiles ./install.sh @@ -29,23 +28,25 @@ cd dotfiles ### Options Run `./install.sh --help` to see all available options and details. - -```bash +``` ./install.sh --help # Show all options ./install.sh --dry-run # Show actions without making changes -./install.sh --theme # Set Oh My Zsh theme (default: clean) +./install.sh --theme # Set Oh My Zsh theme (default: clean) ./install.sh --add-nvm # Enable Node Version Manager config +./install.sh --update # Update installed plugins +./install.sh --check # Verify installation without making changes ``` ## One-line install -### Github -```bash +> The one-line install will clone the repo to `~/.dotfiles` automatically. + +``` curl -fsSL https://raw.githubusercontent.com/jjsalinas/dotfiles/main/install.sh | bash ``` With options -```bash +``` curl -fsSL https://raw.githubusercontent.com/jjsalinas/dotfiles/main/install.sh | bash -s -- --theme clean --add-nvm ```