{"id":30071022,"url":"https://github.com/NixNeovim/NixNeovimPlugins","last_synced_at":"2025-08-08T12:08:17.247Z","repository":{"id":56744043,"uuid":"524427357","full_name":"NixNeovim/NixNeovimPlugins","owner":"NixNeovim","description":"Makes all neovim plugins available in nix (Auto updated)","archived":false,"fork":false,"pushed_at":"2025-08-03T14:28:01.000Z","size":12308,"stargazers_count":138,"open_issues_count":3,"forks_count":26,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-03T16:20:32.380Z","etag":null,"topics":["neovim","nix","nixos","plugins","vim"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"m15a/nixpkgs-vim-extra-plugins","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NixNeovim.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}},"created_at":"2022-08-13T14:50:55.000Z","updated_at":"2025-08-03T14:28:04.000Z","dependencies_parsed_at":"2024-06-25T14:08:12.685Z","dependency_job_id":"4998834a-ed70-47ac-95f9-a5719dbf1996","html_url":"https://github.com/NixNeovim/NixNeovimPlugins","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NixNeovim/NixNeovimPlugins","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NixNeovim%2FNixNeovimPlugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NixNeovim%2FNixNeovimPlugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NixNeovim%2FNixNeovimPlugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NixNeovim%2FNixNeovimPlugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NixNeovim","download_url":"https://codeload.github.com/NixNeovim/NixNeovimPlugins/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NixNeovim%2FNixNeovimPlugins/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269417542,"owners_count":24413384,"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","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["neovim","nix","nixos","plugins","vim"],"created_at":"2025-08-08T12:07:59.434Z","updated_at":"2025-08-08T12:08:16.818Z","avatar_url":"https://github.com/NixNeovim.png","language":"Nix","funding_links":[],"categories":["Overlays"],"sub_categories":[],"readme":"# All vim plugins, ready to go\n\nThis repo auto generates nix packages for vim/neovim plugins.\nPackages are automatically updated twice per week using a GitHub Actions.\nPlugins are fetched from the `manifest.yaml` and [awesome-neovim][0] repo.\n\nThis is a fork of [this repo](https://github.com/m15a/nixpkgs-vim-extra-plugins); however, we fetch all additions from the original repo, so we will never have less plugins.\nFurther, the original deletes plugins that are available in the nixpkgs. We, instead, try to assemble a list of all available plugins.\nTherefore, to access plugins you will never have to search in two places.\n\n## Available plugins\n\nThe [plugins.md](plugins.md) contains an auto-generated list of all available plugins.\n\n## Usage\n\n- Sometimes, a new plugin has the same name as an existing one. In this case, we rename the new plugin to `\u003cplugin-name\u003e-\u003cowner\u003e`.\n\nTo access the plugins, you need to add the overlay.\nThe overlay adds extra Vim plugins to `pkgs.vimExtraPlugins`.\nFirst, add this repo to your inputs:\n\n```\ninputs.nixneovimplugins.url = github:NixNeovim/NixNeovimPlugins\n```\n\nNext, apply the provided overlay:\n\n```\nnixpkgs.overlays = [\n  inputs.nixneovimplugins.overlays.default\n];\n```\n\nFinally, you can add the packages to your vim/neovim config. For example you can use [NixNeovim](https://github.com/NixNeovim/Nixneovim) or you can add the plugins directly:\n\n```\n programs.neovim = {\n   plugins = [\n     pkgs.vimExtraPlugins.nvim-colorizer-lua\n   ];\n }\n```\n\nMore info on using neovim with nix can be found here: [NixOS Neovim](https://nixos.wiki/wiki/Neovim)\n\n[0]: https://github.com/rockerBOO/awesome-neovim\n[1]: https://nixos.org/manual/nix/stable/release-notes/rl-2.4.html?highlight=builtins.getFlake#other-features\n[2]: https://nur.nix-community.org/\n[3]: https://nur.nix-community.org/repos/m15a/\n\n\n## Contribution\n\n### How to add a new plugin\n\n#### 1. Add the plugin to manifest.yaml:\n\nThe new yaml format has the following format\n\n```\n- owner: nvim-telescope\n  repo: telescope.nvim\n  # the following keys are optional\n  branch: ... # explicitly select branch\n  custom_name: ... # set custom name, used to fix name clashes\n  license: ... # specify license\n  commit: ... # specify commit to use, can be used when newest version is broken\n  warning: ... # add a waning that will be displayed when using the plugin, will also be visible in plugins.md\n```\n\nSupported are Github (default), SourceHut, and GitLab.\n\n#### 2. Create a Pull Request\n\n- Create a pull request with the changed manifest.yaml (and blocklist.yaml if neccessary).\n- A GitHub action will check your contribution and generate all neccessary nix code for your new plugin. It will also take care of sorting and cleaning the manifest.yaml\n- After all checks have passed, I will merge your change.\n\nI am happy for any contribution. :)\n\n### How to remove a new plugin\n\nthis contains old information. Just open an issue for now\n\nCopy the entry from manifest.yaml to blocklist.yaml and create a PR.\nThe GitHub Actions will do the rest, including removing the entry from manifest.yaml\n\n## Credits\n\nThis is originally based on work by [m15a](https://github.com/m15a/nixpkgs-vim-extra-plugins)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNixNeovim%2FNixNeovimPlugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FNixNeovim%2FNixNeovimPlugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNixNeovim%2FNixNeovimPlugins/lists"}