fix blamer and stop greying compiler directives in clang

This commit is contained in:
Ubuntu
2026-07-21 16:18:42 +00:00
parent ac131ba523
commit 5b083c76bc
2 changed files with 22 additions and 9 deletions
+15 -1
View File
@@ -2,7 +2,21 @@ local ignoreServers = require('ignoreConfig.lspIgnoreServers')
local servers = {
jq = {},
clangd = {},
clangd = {
-- capabilities = capabilities,
cmd = {
"clangd",
"--background-index",
"--clang-tidy",
},
settings = {
clangd = {
SemanticTokens = {
DisabledKinds = { "InactiveCode" }
}
}
}
},
glsl_analyzer = {},
lua_ls = {
-- cmd = { ... },
+4 -5
View File
@@ -1,9 +1,8 @@
if package.config:sub(1,1) == '\\' then
return {}
end
if not vim.fn.has("win32") == 1 then
return {
"APZelos/blamer.nvim",
}
else
return {
}
end