moved lsp server config to after dir

This commit is contained in:
2025-04-20 23:34:31 +02:00
parent 23dd1811ee
commit df0db24702
5 changed files with 69 additions and 68 deletions

21
after/lsp/clangd.lua Normal file
View File

@ -0,0 +1,21 @@
return {
cmd = {
'clangd',
'--compile-commands-dir=build_nvim',
'--query-driver',
'/opt/cortex-a78-2022.08-gcc12.1-linux5.15/bin/aarch64-linux-gnu-g*',
'--clang-tidy',
'--background-index',
'--use-dirty-headers',
'--completion-style=detailed',
},
root_markers = {
'.clangd',
'.clang-tidy',
'.clang-format',
'compile_flags.txt',
'configure.ac',
'.git',
'build_nvim',
},
}