nix-community.nixvim/plugins/by-name/hmts/default.nix
2024-12-11 11:59:27 -06:00

21 lines
422 B
Nix

{
lib,
config,
...
}:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "hmts";
originalName = "hmts.nvim";
package = "hmts-nvim";
maintainers = [ lib.maintainers.GaetanLepage ];
callSetup = false;
hasSettings = false;
hasConfigAttrs = false;
extraConfig = {
warnings = lib.optional (
!config.plugins.treesitter.enable
) "Nixvim: hmts needs treesitter to function as intended";
};
}