{"id":16137512,"url":"https://github.com/ntbbloodbath/nvenv","last_synced_at":"2025-03-18T16:30:31.790Z","repository":{"id":48957252,"uuid":"356426296","full_name":"NTBBloodbath/nvenv","owner":"NTBBloodbath","description":"A lightweight and blazing fast Neovim version manager.","archived":false,"fork":false,"pushed_at":"2024-09-03T21:09:02.000Z","size":53,"stargazers_count":53,"open_issues_count":2,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-10T23:27:37.894Z","etag":null,"topics":["neovim","version-manager","vlang"],"latest_commit_sha":null,"homepage":"","language":"V","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/NTBBloodbath.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2021-04-10T00:02:41.000Z","updated_at":"2024-07-01T08:08:29.000Z","dependencies_parsed_at":"2024-10-26T09:09:46.215Z","dependency_job_id":"6552174a-e692-4441-abac-6b7e073308fd","html_url":"https://github.com/NTBBloodbath/nvenv","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NTBBloodbath%2Fnvenv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NTBBloodbath%2Fnvenv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NTBBloodbath%2Fnvenv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NTBBloodbath%2Fnvenv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NTBBloodbath","download_url":"https://codeload.github.com/NTBBloodbath/nvenv/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243940088,"owners_count":20372045,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["neovim","version-manager","vlang"],"created_at":"2024-10-09T23:27:43.697Z","updated_at":"2025-03-18T16:30:31.461Z","avatar_url":"https://github.com/NTBBloodbath.png","language":"V","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Nvenv\n\n![License](https://img.shields.io/github/license/NTBBloodbath/nvenv?color=3DA639\u0026logo=open-source-initiative\u0026logoColor=3DA639\u0026style=for-the-badge)\n![Latest Release](https://img.shields.io/github/v/release/NTBBloodbath/nvenv?include_prereleases\u0026color=9FEF00\u0026logo=hack-the-box\u0026style=for-the-badge)\n![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/NTBBloodbath/nvenv/build/main?logo=github\u0026style=for-the-badge)\n\n[Features](#features) • [Install](#install) • [Usage](#usage) • [Building](#building) • [Contribute](#contribute)\n\n\u003c/div\u003e\n\n---\n\nNvenv is a lightweight and blazing fast Neovim\nversion manager, made using [Vlang](https://github.com/vlang/v).\n\n# Features\n\n- Extremely lightweight (~300kB)\n- Blazing fast execution time (\u003c1s execution time)\n- No heavy dependencies\n\n# Install\n\n\u003e **Supported OS:**\n\u003e\n\u003e 1. Linux\n\u003e\n\u003e 2. MacOS (Untested, if you found issues please report them!)\n\n## Dependencies\n\n- jq\n- tar\n- curl\n\n# Usage\nJust run \u003ckbd\u003envenv help\u003c/kbd\u003e and see the available commands\nor \u003ckbd\u003envenv help [command]\u003c/kbd\u003e for help with a specific command.\n\n```\n❯ nvenv help\nUsage: nvenv [commands]\n\nA lightweight and blazing fast Neovim version manager\n\nCommands:\n  setup               Set up required files and directories, required at first usage.\n  ls                  List your installed versions.\n  list-remote         List the available versions.\n  install             Install a version.\n  uninstall           Uninstall a version.\n  update-nightly      Update Neovim Nightly version.\n  use                 Use a specific version.\n  clean               Clean Nvenv cache files.\n  help                Prints help information.\n  version             Prints version information.\n```\n\n## Example\n\n```sh\n# First we need to setup nvenv to create its directories.\nnvenv setup\n\n# Then we install Neovim Nightly and latest stable (0.4.4).\n# The first version downloaded will be used by default.\nnvenv install nightly\nnvenv install stable\n\n# To switch to Neovim stable\nnvenv use stable\n```\n\n\u003e **NOTE:** You need to add `$HOME/.local/bin` to your `$PATH`!\n\u003e\n\u003e `export PATH=$HOME/.local/bin:$PATH`. In this way, the shell will prefer to use\n\u003e the version that is being used in Nvenv instead of the version installed on the system.\n\n---\n\n# Building\n\n## Dependencies\n\n- [v](https://github.com/vlang/v#installing-v-from-source)\n\nFirst, you need to download the Nvenv repository\n(I assume that you have already installed V).\n\n```sh\ngit clone https://github.com/NTBBloodbath/nvenv\n```\n\nIf you use `GNU Make` then you can just run it for build\n\n```sh\n# Available platforms: linux, macos\nmake your_platform\n```\n\nOtherwise, you can compile it manually\n\n```sh\nv -prod nvenv.v\n```\n\n---\n\n# Contribute\n\n1. Fork it (https://github.com/NTBBloodbath/nvenv/fork)\n2. Create your feature branch (\u003ckbd\u003egit checkout -b my-new-feature\u003c/kbd\u003e)\n3. Commit your changes (\u003ckbd\u003egit commit -am 'Add some feature'\u003c/kbd\u003e)\n4. Push to the branch (\u003ckbd\u003egit push origin my-new-feature\u003c/kbd\u003e)\n5. Create a new Pull Request\n\n\u003e **NOTE:** Before commit your changes, format the code by running `make fmt`.\n\n# License\n\nnvenv is [MIT Licensed](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntbbloodbath%2Fnvenv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fntbbloodbath%2Fnvenv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntbbloodbath%2Fnvenv/lists"}