summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/user/\
blob: 2baf779c4b63eb300a2a8bbb88255aa2bd607d37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
	},
}