From 5a4632efdda1e6b5052f79ef873717ae26072fd9 Mon Sep 17 00:00:00 2001 From: Quentin Boyer Date: Tue, 21 Jan 2025 00:02:06 +0100 Subject: [PATCH] neovim: Adapt to clangd-extensions changes --- neovim/config/lsp.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/neovim/config/lsp.nix b/neovim/config/lsp.nix index d37efe7..4dbd078 100644 --- a/neovim/config/lsp.nix +++ b/neovim/config/lsp.nix @@ -237,23 +237,23 @@ enable = true; enableOffsetEncodingWorkaround = true; - ast = { - roleIcons = { + settings.ast = { + role_icons = { type = ""; declaration = ""; expression = ""; specifier = ""; statement = ""; - templateArgument = ""; + "template argument" = ""; }; - kindIcons = { - compound = ""; - recovery = ""; - translationUnit = ""; - packExpansion = ""; - templateTypeParm = ""; - templateTemplateParm = ""; - templateParamObject = ""; + kind_icons = { + Compound = ""; + Recovery = ""; + TranslationUnit = ""; + PackExpansion = ""; + TemplateTypeParm = ""; + TemplateTemplateParm = ""; + TemplateParamObject = ""; }; }; };