nix-community.nixvim/tests/test-sources/plugins/lsp/yamlls.nix
2024-05-25 22:26:50 +01:00

21 lines
379 B
Nix

{
example = {
plugins.lsp = {
enable = true;
servers.yamlls = {
enable = true;
settings = {
hover = true;
completion = true;
validate = true;
schemaStore = {
enable = true;
url = "https://www.schemastore.org/api/json/catalog.json";
};
};
};
};
};
}