nix-community.nixvim/tests/test-sources/plugins/lsp/yamlls.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
379 B
Nix
Raw Normal View History

2024-04-30 09:24:24 +02:00
{
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";
};
};
};
};
};
}