diff options
Diffstat (limited to '.config/nvim/lua/user/\')
-rw-r--r-- | .config/nvim/lua/user/\ | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/.config/nvim/lua/user/\ b/.config/nvim/lua/user/\ deleted file mode 100644 index 2baf779..0000000 --- a/.config/nvim/lua/user/\ +++ /dev/null @@ -1,13 +0,0 @@ -lsp = require 'lspconfig' - -lsp.clangd.setup { - cmd = {"clangd", "--background-index", "--suggest-missing-includes", "--clang-tidy"}, - filetypes = {"c", "cpp", "cxx", "h", "hpp", "hxx", "inc", "objc", "objcpp"}, - root_dir = lspconfig.utill.root_pattern("CMakeLists.txt", "Makefile", "qmake.pro", ".git"), - init_options = { - clangdFileStatus = true, - usePlaceholders = true, - completeUnimported = true, - semanticHighlighting = true, - }, -} |