diff options
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/after/plugin/lsp.lua | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 7ea5b5c..227e2eb 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -31,6 +31,7 @@ require('mason-lspconfig').setup({ 'marksman', 'ltex', 'perlnavigator', + 'clangd', }, handlers = { lsp.default_setup, @@ -96,17 +97,17 @@ cmp.setup { } } -local lspconfig = require'lspconfig' -lspconfig.ccls.setup { - init_options = { - compilationDatabaseDirectory = "build"; - index = { - threads = 0; - }; - clang = { - excludeArgs = { "-frounding-math" } ; - }; - } -} +-- local lspconfig = require'lspconfig' +-- lspconfig.ccls.setup { +-- init_options = { +-- compilationDatabaseDirectory = "build"; +-- index = { +-- threads = 0; +-- }; +-- clang = { +-- excludeArgs = { "-frounding-math" }; +-- }; +-- } +-- } lsp.setup() |