2023-10-15 16:32:16 +01:00
|
|
|
{
|
|
|
|
lib,
|
2023-11-06 15:04:08 +01:00
|
|
|
config,
|
2023-10-15 16:32:16 +01:00
|
|
|
...
|
|
|
|
}:
|
2024-12-11 10:42:14 -06:00
|
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
|
|
|
name = "hmts";
|
2024-12-13 08:27:14 -06:00
|
|
|
packPathName = "hmts.nvim";
|
2024-12-11 10:42:14 -06:00
|
|
|
package = "hmts-nvim";
|
2024-01-26 15:33:09 +01:00
|
|
|
|
2024-12-11 10:42:14 -06:00
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
2023-10-15 16:32:16 +01:00
|
|
|
|
2024-12-11 10:42:14 -06:00
|
|
|
callSetup = false;
|
|
|
|
hasSettings = false;
|
|
|
|
hasLuaConfig = false;
|
|
|
|
extraConfig = {
|
2024-12-11 10:36:13 -06:00
|
|
|
warnings = lib.optional (
|
2024-12-11 10:26:12 -06:00
|
|
|
!config.plugins.treesitter.enable
|
|
|
|
) "Nixvim: hmts needs treesitter to function as intended";
|
2023-10-15 16:32:16 +01:00
|
|
|
};
|
|
|
|
}
|