mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-03 05:44:31 +02:00
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.
9 lines
286 B
Nix
9 lines
286 B
Nix
{ lib, ... }:
|
|
lib.nixvim.vim-plugin.mkVimPlugin {
|
|
name = "earthly";
|
|
packPathName = "earthly.vim";
|
|
package = "earthly-vim";
|
|
url = "https://github.com/earthly/earthly.vim";
|
|
description = "Earthfile syntax highlighting for vim";
|
|
maintainers = [ lib.maintainers.DataHearth ];
|
|
}
|