docs: fix example mis-quoting

This commit is contained in:
Ching Pei Yang 2025-08-30 16:12:24 +02:00
commit 15b508a19b
No known key found for this signature in database
GPG key ID: B3841364253DC4C8

View file

@ -41,24 +41,22 @@ in {
servers = mkOption { servers = mkOption {
type = attrsOf lspOptions; type = attrsOf lspOptions;
default = {}; default = {};
example = '' example = {
{ "*" = {
"*" = { root_markers = [".git"];
root_markers = [".git"]; capabilities = {
capabilities = { textDocument = {
textDocument = { semanticTokens = {
semanticTokens = { multilineTokenSupport = true;
multilineTokenSupport = true;
};
}; };
}; };
}; };
};
"clangd" = { "clangd" = {
filetypes = ["c"]; filetypes = ["c"];
}; };
} };
'';
description = '' description = ''
LSP configurations that will be managed using `vim.lsp.config()` and related LSP configurations that will be managed using `vim.lsp.config()` and related
utilities added in Neovim 0.11. LSPs defined here will be added to the utilities added in Neovim 0.11. LSPs defined here will be added to the