diff --git a/plugins/by-name/earthly/default.nix b/plugins/by-name/earthly/default.nix new file mode 100644 index 00000000..97e387e8 --- /dev/null +++ b/plugins/by-name/earthly/default.nix @@ -0,0 +1,9 @@ +{ lib, ... }: +lib.nixvim.vim-plugin.mkVimPlugin { + name = "earthly"; + originalName = "earthly.vim"; + package = "earthly-vim"; + url = "https://github.com/earthly/earthly.vim"; + description = "Earthfile syntax highlighting for vim"; + maintainers = [ lib.maintainers.DataHearth ]; +} diff --git a/tests/test-sources/plugins/by-name/earthly/default.nix b/tests/test-sources/plugins/by-name/earthly/default.nix new file mode 100644 index 00000000..a4ef1cc1 --- /dev/null +++ b/tests/test-sources/plugins/by-name/earthly/default.nix @@ -0,0 +1,5 @@ +{ + empty = { + plugins.earthly.enable = true; + }; +}