mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
22 lines
455 B
Nix
22 lines
455 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "hmts";
|
|
packPathName = "hmts.nvim";
|
|
package = "hmts-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
callSetup = false;
|
|
hasSettings = false;
|
|
hasLuaConfig = false;
|
|
extraConfig = {
|
|
warnings = lib.nixvim.mkWarnings "plugins.hmts" {
|
|
when = !config.plugins.treesitter.enable;
|
|
message = "hmts needs treesitter to function as intended";
|
|
};
|
|
};
|
|
}
|