nix-community.nixvim/plugins/by-name/yaml-schema-detect/default.nix
2025-08-06 15:35:54 +00:00

25 lines
528 B
Nix

{
lib,
config,
options,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "yaml-schema-detect";
packPathName = "yaml-schema-detect.nvim";
package = "yaml-schema-detect-nvim";
maintainers = [ lib.maintainers.FKouhai ];
description = ''
A Neovim plugin that automatically detects and applies YAML schemas for your YAML files using yaml-language-server (yamlls)
'';
settingsExample = {
keymap = {
refresh = "<leader>yr";
cleanup = "<leader>yc";
info = "<leader>yi";
};
};
}