mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
22 lines
379 B
Nix
22 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|