mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-04 06:14:32 +02:00
10 lines
286 B
Nix
10 lines
286 B
Nix
|
{ 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 ];
|
||
|
}
|