From addc2544f9c0063696bcc6ef72492869c588007e Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Wed, 16 Nov 2022 01:11:41 -0300 Subject: [PATCH] add clangd --- init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 893b4ea..4ba1175 100644 --- a/init.lua +++ b/init.lua @@ -122,7 +122,14 @@ end -- Use a loop to conveniently call 'setup' on multiple servers and -- map buffer local keybindings when the language server attaches -local servers = { 'gopls', 'kotlin_language_server', 'rust_analyzer', 'tsserver', 'pylsp' } +local servers = { + 'clangd', + 'gopls', + 'kotlin_language_server', + 'pylsp', + 'rust_analyzer', + 'tsserver', +} -- Setup loop moved to the cmp section, since calling setup multiple times -- overrides the previous calls.