14 lines
383 B
Lua
14 lines
383 B
Lua
-- Author : swytch
|
|
-- Created : Tuesday May 18, 2021 12:08:51 CET
|
|
-- License : GPLv3
|
|
-- Description : clangd config file for lsp
|
|
|
|
require("lspconfig").clangd.setup {
|
|
cmd = { "clangd",
|
|
"--background-index",
|
|
"--suggest-missing-includes",
|
|
"--clang-tidy",
|
|
"--header-insertion=iwyu"
|
|
}
|
|
}
|