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