1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
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";
};
};
};
};
};
}