16 lines
274 B
Nix
16 lines
274 B
Nix
{
|
|
plugins.lsp.servers.yamlls = {
|
|
enable = true;
|
|
extraOptions = {
|
|
capabilities = {
|
|
textDocument = {
|
|
foldingRange = {
|
|
dynamicRegistration = false;
|
|
lineFoldingOnly = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|