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