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.

22 lines
420 B
Nix
Raw Normal View History

2023-10-15 16:32:16 +01:00
{
lib,
config,
2023-10-15 16:32:16 +01:00
...
}:
lib.nixvim.neovim-plugin.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 = {
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
};
}