nix-community.nixvim/plugins/by-name/hmts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
455 B
Nix
Raw Normal View History

2023-10-15 16:32:16 +01:00
{
lib,
config,
2023-10-15 16:32:16 +01:00
...
}:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkNeovimPlugin {
name = "hmts";
packPathName = "hmts.nvim";
package = "hmts-nvim";
maintainers = [ lib.maintainers.GaetanLepage ];
2023-10-15 16:32:16 +01:00
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";
};
2023-10-15 16:32:16 +01:00
};
}