From 9abf3ced277dab2cc17df0e946590feb491dcdbc Mon Sep 17 00:00:00 2001 From: tikikun Date: Tue, 5 Sep 2023 16:02:04 +0700 Subject: [PATCH] add lsp clangd --- lua/custom/plugins/lsp-clangd.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lua/custom/plugins/lsp-clangd.lua diff --git a/lua/custom/plugins/lsp-clangd.lua b/lua/custom/plugins/lsp-clangd.lua new file mode 100644 index 00000000..6ff14344 --- /dev/null +++ b/lua/custom/plugins/lsp-clangd.lua @@ -0,0 +1,6 @@ +return { + 'neovim/nvim-lspconfig', + config = function() + require('lspconfig').clangd.setup {} + end +}