nix-community.nixvim/plugins/by-name/yaml-schema-detect/default.nix

26 lines
528 B
Nix
Raw Normal View History

2025-05-31 12:05:48 +02:00
{
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";
};
};
}