Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m15a/flake-awesome-neovim-plugins
Nix flake of Awesome Neovim plugins
https://github.com/m15a/flake-awesome-neovim-plugins
List: flake-awesome-neovim-plugins
flakehub neovim-plugins nix-flake
Last synced: about 1 month ago
JSON representation
Nix flake of Awesome Neovim plugins
- Host: GitHub
- URL: https://github.com/m15a/flake-awesome-neovim-plugins
- Owner: m15a
- License: bsd-3-clause
- Created: 2021-12-11T08:13:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T17:30:45.000Z (about 1 month ago)
- Last Synced: 2024-10-29T18:55:02.140Z (about 1 month ago)
- Topics: flakehub, neovim-plugins, nix-flake
- Language: Fennel
- Homepage:
- Size: 29.2 MB
- Stars: 51
- Watchers: 1
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neovim - m15a/flake-awesome-neovim-plugins - Nix flake that provides Awesome Neovim plugins collection as Nix packages. (External / OS-specific)
README
# flake-awesome-neovim-plugins
Nix flake of Awesome Neovim plugins.
[![CI][b1]][b2]
[![Awesome Neovim plugins][b3]][Awesome Neovim]
[![FlakeHub][b4]][b5][b1]: https://img.shields.io/github/actions/workflow/status/m15a/flake-awesome-neovim-plugins/check.yml?style=flat-square&logo=github&label=CI
[b2]: https://github.com/m15a/flake-awesome-neovim-plugins/actions/workflows/check.yml
[b3]: https://img.shields.io/badge/Awesome_Neovim_plugins-913-57A143?style=flat-square
[b4]: https://img.shields.io/endpoint?url=https://flakehub.com/f/m15a/flake-awesome-neovim-plugins/badge&style=flat-square
[b5]: https://flakehub.com/flake/m15a/flake-awesome-neovim-plugins![Daily stats](data/stats/plot/daily.png)
## Description
This repository is a *mirror* of [Awesome Neovim], in a sense that
it as a [Nix flake] provides all Neovim plugins in the Awesome Neovim
collection.[Awesome Neovim]: https://github.com/rockerBOO/awesome-neovim
[Nix flake]: https://wiki.nixos.org/wiki/FlakesPackages are automatically updated once every day using GitHub Actions.
This is done by parsing the `README.md` and collecting all plugins
manifested therein.Since these packages are automatically generated, some of them could be
broken due to lack of appropriate overrides (missing dependencies, build
inputs, etc.). So, you should be careful if you want to use them.## Usage
### Flake
The overlay adds Awesome Neovim plugins to `pkgs.awesomeNeovimPlugins`.
Use it as you normally do, like so:```nix
{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
awesome-neovim-plugins.url = "github:m15a/flake-awesome-neovim-plugins";
};
outputs = { self, nixpkgs, flake-utils, awesome-neovim-plugins, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ awesome-neovim-plugins.overlays.default ];
};
in {
packages = {
your-neovim = pkgs.neovim.override {
configure = {
packages.example = with pkgs.awesomeNeovimPlugins; {
start = [
ataraxis-lua
];
};
};
};
};
});
}
```### FlakeHub
Alternatively, you can use this flake via [FlakeHub].
See instructions at the [FlakeHub page].[FlakeHub]: https://flakehub.com/
[FlakeHub page]: https://flakehub.com/flake/m15a/flake-awesome-neovim-plugins## Contributing
### Add a new plugin to this flake
Send a pull request to [Awesome Neovim] in which your favorite plugin
is registered in their `README.md`. Done? Then, wait until the next
plugin updating workflow runs.### Remove a plugin from this flake
Again, send a pull request to [Awesome Neovim] in which your plugin
is removed from their `README.md`.### Fix build of a plugin
Send a pull request to this repository in which your fix is applied in
[`./nix/overrides.nix`](nix/overrides.nix).## Licenses
Unless otherwise stated, this software is licensed under the
[BSD 3-clause license](LICENSE).A part of [`./nix/overrides.nix`](nix/overrides.nix) is modification
from the original Nixpkgs' code, which is licensed under the MIT license.
See the license terms in comments in the file.[`./data/plugins-info/awesome-neovim.json`](data/plugins-info/awesome-neovim.json)
is collected from various code hosting services by using their API.
Each part of the data has respective copyright and permission to use.
For more information about the permissible data use and content rights,
see each service's terms of use:- [GitHub](https://docs.github.com/en/site-policy/github-terms/github-terms-of-service)
- [GitLab](https://handbook.gitlab.com/handbook/legal/api-terms/)
- [sourcehut](https://man.sr.ht/terms.md)
- [Codeberg](https://codeberg.org/codeberg/org/src/branch/main/TermsOfUse.md)Datasets and images in [`./data/stats/`](data/stats/) are contributed
by the same authors declared in the [software license](LICENSE), and
licensed under the [Creative Commons Attribution-ShareAlike 4.0
International license](https://creativecommons.org/licenses/by-sa/4.0/).