diff options
author | Joe <rrbo@proton.me> | 2023-09-28 15:48:57 +0200 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-09-28 15:48:57 +0200 |
commit | 1e8b85ba32c588eae8db1426ac6588226097266c (patch) | |
tree | 3e46c46756978fc14d33faf2a4ddd6bebee685b6 /.config/nvim/after/plugin | |
parent | up (diff) | |
download | dotfiles-bsd-1e8b85ba32c588eae8db1426ac6588226097266c.tar.gz dotfiles-bsd-1e8b85ba32c588eae8db1426ac6588226097266c.tar.bz2 dotfiles-bsd-1e8b85ba32c588eae8db1426ac6588226097266c.tar.xz dotfiles-bsd-1e8b85ba32c588eae8db1426ac6588226097266c.tar.zst dotfiles-bsd-1e8b85ba32c588eae8db1426ac6588226097266c.zip |
up
Diffstat (limited to '.config/nvim/after/plugin')
-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() |