mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
21 lines
414 B
Nix
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";
|
|
};
|
|
}
|