{"id":41997496,"url":"https://github.com/candango/nvimm","last_synced_at":"2026-04-05T05:00:51.662Z","repository":{"id":330550210,"uuid":"1122871951","full_name":"candango/nvimm","owner":"candango","description":"Neovim installation Manager","archived":false,"fork":false,"pushed_at":"2026-01-20T02:23:01.000Z","size":43,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-26T14:39:52.111Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/candango.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-25T17:48:12.000Z","updated_at":"2026-01-20T02:23:04.000Z","dependencies_parsed_at":"2026-04-05T05:00:38.005Z","dependency_job_id":null,"html_url":"https://github.com/candango/nvimm","commit_stats":null,"previous_names":["candango/nviman","candango/nvimm"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/candango/nvimm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/candango%2Fnvimm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/candango%2Fnvimm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/candango%2Fnvimm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/candango%2Fnvimm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/candango","download_url":"https://codeload.github.com/candango/nvimm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/candango%2Fnvimm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31424931,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T02:22:46.605Z","status":"ssl_error","status_checked_at":"2026-04-05T02:22:33.263Z","response_time":75,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-26T01:08:11.767Z","updated_at":"2026-04-05T05:00:51.656Z","avatar_url":"https://github.com/candango.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Candango NvimM\n\nA lightweight command-line utility written in **Go** to manage **Neovim**\nversions directly from official GitHub releases. `nvimm` lets you install,\nswitch, and upgrade Neovim builds without touching your system package manager.\n\n---\n\n## Quick Start\n\n**1. Install nvimm:**\n\n```bash\ngo install github.com/candango/nvimm/cmd/nvimm@latest\n```\n\n**2. Install the latest stable Neovim:**\n\n```bash\nnvimm install stable -y\n```\n\n**3. Add the managed binary to your PATH** (add to your shell profile):\n\n```bash\nexport PATH=\"$HOME/.nvimm/current/bin:$PATH\"\n```\n\nThat's it. Run `nvim --version` to confirm.\n\n---\n\n## Commands\n\n### `nvimm list` — Browse available versions\n\nShows installed versions and what is available to install:\n\n```\nnvimm list\n\nInstalled versions\n  nightly\n* 0.11.5 (stable)\n  0.11.4\n  0.11.3\n\nAvailable versions\n  0.10.2\n  0.9.5\n  ...\n```\n\nThe `*` marks the version currently set as active.\n\n---\n\n### `nvimm install \u003cversion\u003e` — Install a version\n\nInstalls a specific version, the current stable, or the nightly build:\n\n```bash\nnvimm install 0.11.5     # specific version\nnvimm install stable     # current stable release\nnvimm install nightly    # latest nightly build\n```\n\n`nvimm` will prompt before downloading and before setting as current:\n\n```\nnvimm install 0.11.5\n\ndownload 0.11.5? (y/n) y\nDownload completed. [OK]\n...\nInstallation completed. [OK]\nInstalled at: /home/user/.nvimm/0.11.5\nset 0.11.5 as current? (y/n) y\nVersion 0.11.5 set as current.\n```\n\nSkip all prompts with `-y`:\n\n```bash\nnvimm install -y stable\n```\n\n---\n\n### `nvimm upgrade` — Upgrade to the latest stable\n\nChecks if a newer stable release is available and installs it:\n\n```\nnvimm upgrade\n\nChecking for latest stable...\n0.11.6 not installed\ndownload 0.11.6? (y/n) y\n...\nInstallation completed. [OK]\nInstalled at: /home/user/.nvimm/0.11.6\nset 0.11.6 as current? (y/n) y\nVersion 0.11.6 set as current.\n```\n\nIf you are already on the latest stable:\n\n```\nnvimm upgrade\n\nChecking for latest stable...\nAlready up to date: 0.11.5\n```\n\nSkip all prompts with `-y`:\n\n```bash\nnvimm upgrade -y\n```\n\n---\n\n### `nvimm current` — Show or switch the active version\n\nShow which version is currently active:\n\n```bash\nnvimm current\n\n* 0.11.5\n```\n\nSwitch to a different installed version:\n\n```bash\nnvimm current 0.11.3\n```\n\n---\n\n## Configuration\n\n`nvimm` can be configured via environment variables or flags:\n\n| Variable | Flag | Description | Default |\n|---|---|---|---|\n| `NVIMM_PATH` | `-p` | Where releases are installed | `~/.nvimm` |\n| `NVIMM_CACHE_PATH` | `-C` | Cache directory | `~/.cache/nvimm` |\n| `NVIMM_MIN_RELEASE` | `-r` | Oldest release to show | `0.7.0` |\n| `NVIMM_CONFIG_DIR` | `-d` | Config file directory | `~/.config/nvimm` |\n\n---\n\n## Development\n\nClone and build locally:\n\n```bash\ngit clone https://github.com/candango/nvimm.git\ncd nvimm\ngo build -o nvimm ./cmd/nvimm\n```\n\nRun the tests:\n\n```bash\ngo test ./...\n```\n\n---\n\n## License\n\nThis project is licensed under the MIT License. See the\n[LICENSE](https://mit-license.org/) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcandango%2Fnvimm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcandango%2Fnvimm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcandango%2Fnvimm/lists"}