plugins/earthly: add plugin

This commit is contained in:
DataHearth 2024-09-27 11:20:49 +02:00 committed by nix-infra-bot
parent 844336ceb2
commit 5f4a4b4759
2 changed files with 14 additions and 0 deletions

View file

@ -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 ];
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.earthly.enable = true;
};
}