23 lines
491 B
Lua
23 lines
491 B
Lua
-- Author : swytch
|
|
-- Created : Monday May 2, 2022 21:00:24 CET
|
|
-- License : GPLv3
|
|
-- Description : neovim lsp config file for clangd
|
|
|
|
|
|
local M = {}
|
|
|
|
local clangd_binary = _G.lsp_root_dir .. "clangd/clangd/bin/clangd"
|
|
|
|
M.setup = function(opts)
|
|
opts.settings = {
|
|
cmd = { clangd_binary,
|
|
"--background-index",
|
|
"--suggest-missing-includes",
|
|
"--clang-tidy",
|
|
"--header-insertion=iwyu"
|
|
},
|
|
}
|
|
end
|
|
|
|
return M
|