moved lsp server config to after dir
This commit is contained in:
7
after/lsp/basedpyright.lua
Normal file
7
after/lsp/basedpyright.lua
Normal file
@ -0,0 +1,7 @@
|
||||
return {
|
||||
settings = {
|
||||
basedpyright = {
|
||||
typeCheckingMode = 'standard',
|
||||
},
|
||||
},
|
||||
}
|
21
after/lsp/clangd.lua
Normal file
21
after/lsp/clangd.lua
Normal 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',
|
||||
},
|
||||
}
|
22
after/lsp/lua_ls.lua
Normal file
22
after/lsp/lua_ls.lua
Normal file
@ -0,0 +1,22 @@
|
||||
return {
|
||||
settings = {
|
||||
Lua = {
|
||||
workspace = {
|
||||
checkThirdParty = false,
|
||||
},
|
||||
completion = {
|
||||
callSnippet = 'Replace',
|
||||
},
|
||||
-- Do not send telemetry data containing a randomized but unique identifier
|
||||
telemetry = {
|
||||
enable = false,
|
||||
},
|
||||
diagnostics = {
|
||||
disable = { 'missing-fields' },
|
||||
},
|
||||
format = {
|
||||
enable = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
7
after/lsp/yamlls.lua
Normal file
7
after/lsp/yamlls.lua
Normal file
@ -0,0 +1,7 @@
|
||||
return {
|
||||
settings = {
|
||||
yaml = {
|
||||
validate = true,
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user