mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-04 22:34:31 +02:00
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
23 lines
539 B
Nix
23 lines
539 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "hmts";
|
|
packPathName = "hmts.nvim";
|
|
package = "hmts-nvim";
|
|
description = "Custom treesitter queries for Home Manager nix files, in Neovim.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
callSetup = false;
|
|
hasSettings = false;
|
|
hasLuaConfig = false;
|
|
extraConfig = {
|
|
warnings = lib.nixvim.mkWarnings "plugins.hmts" {
|
|
when = !config.plugins.treesitter.enable;
|
|
message = "hmts needs treesitter to function as intended";
|
|
};
|
|
};
|
|
}
|