1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 15:32:48 +01:00
nixvim/plugins/by-name/yaml-schema-detect/default.nix
Matt Sturgeon fe059cd395 flake: add nixf-diagnose to treefmt config
Checks nixd's diagnostic lints using libnixf.
2025-10-01 00:42:40 +00:00

19 lines
459 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "yaml-schema-detect";
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";
};
};
}