6 lines
165 B
Lua
6 lines
165 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { "/usr/bin/clangd" },
|
|
filetypes = { "c", "cpp", "h", "hpp" },
|
|
root_markers = { { "makefile", "Makefile" }, ".git" },
|
|
}
|