dotfiles/nvim/lsp/clangd.lua

7 lines
274 B
Lua
Raw Normal View History

-- Install: dnf install clang-tools-extra
return {
cmd = { "clangd", "--background-index", "--clang-tidy", "--offset-encoding=utf-8" },
filetypes = { "c", "cpp", "objc", "objcpp" },
root_markers = { ".clangd", "compile_commands.json", "compile_flags.txt", ".git" },
}