nix-community.nixvim/plugins/by-name/compiler/default.nix
Austin Horstman a7012e7864
treewide: originalName -> packPathName
We used to only think of it as the plugin repo's name, but we have been
needing to use it for the name of the plugin's packpath location.
2024-12-13 21:29:00 -06:00

19 lines
552 B
Nix

{
lib,
...
}:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "compiler";
packPathName = "compiler.nvim";
package = "compiler-nvim";
maintainers = [ lib.maintainers.khaneliman ];
description = ''
> [!Note]
> Some languages require you manually install their compilers in your machine, so `compiler.nvim` is able to call them.
> Please check [here], as the packages will be different depending your operative system.
[here]: https://github.com/Zeioth/Compiler.nvim/wiki/how-to-install-the-required-dependencies
'';
}