From 8f332f09f8697534618c66eb2ae3b8eaf88bbc11 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 22 Dec 2025 18:42:23 +0100 Subject: [PATCH] switch to ccls clangd is too dependent on the `clang` compiler --- .config/nvim/lua/plugin/lspconfig.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/plugin/lspconfig.lua b/.config/nvim/lua/plugin/lspconfig.lua index 69e115e..be99a5b 100644 --- a/.config/nvim/lua/plugin/lspconfig.lua +++ b/.config/nvim/lua/plugin/lspconfig.lua @@ -6,8 +6,8 @@ return { { dependencies = { 'saghen/blink.cmp' }, ---@type table opts = { - ['clangd'] = true, - ['ccls'] = false, + ['clangd'] = false, + ['ccls'] = true, ['glsl_analyzer'] = true, ['rust_analyzer'] = true, ['omnisharp'] = false,