mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-25 19:55:28 +02:00
25 lines
528 B
Nix
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";
|
|
};
|
|
};
|
|
}
|