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 {
type = attrsOf lspOptions;
default = {};
example = ''
{
"*" = {
root_markers = [".git"];
capabilities = {
textDocument = {
semanticTokens = {
multilineTokenSupport = true;
};
example = {
"*" = {
root_markers = [".git"];
capabilities = {
textDocument = {
semanticTokens = {
multilineTokenSupport = true;
};
};
};
};
"clangd" = {
filetypes = ["c"];
};
}
'';
"clangd" = {
filetypes = ["c"];
};
};
description = ''
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