diff options
| author | iamcheeseman <[email protected]> | 2026-04-18 11:18:23 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-04-18 11:18:23 -0400 |
| commit | f0bf896d1372c69d8ad7889564a28168954d8123 (patch) | |
| tree | b8d21aa614a7fb4ea14f6362a6ea314b75aad4fb /.config/nvim/lsp/clangd.lua | |
| parent | 08fa714b600045802d0ef1474291b17448dee272 (diff) | |
update
Diffstat (limited to '.config/nvim/lsp/clangd.lua')
| -rw-r--r-- | .config/nvim/lsp/clangd.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/nvim/lsp/clangd.lua b/.config/nvim/lsp/clangd.lua new file mode 100644 index 0000000..cbe0fb3 --- /dev/null +++ b/.config/nvim/lsp/clangd.lua @@ -0,0 +1,10 @@ +return { + cmd = {"clangd", "-j=6"}, + filetypes = {"c", "h", "cpp", "hpp", "cc", "hh"}, + root_markers = { + ".clangd", + "compile_commands.json", + "compile_flags.txt", + ".git", + }, +} |
