1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/by-name/hmts/default.nix
2024-12-22 10:04:00 +00:00

21 lines
414 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.optional (
!config.plugins.treesitter.enable
) "Nixvim: hmts needs treesitter to function as intended";
};
}