fix(python-semshi): better highlights (#2839)

This commit is contained in:
Amaan Qureshi 2024-03-27 06:23:26 -04:00 committed by GitHub
parent bb1480a6b9
commit d945137a32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,15 +16,16 @@ return {
callback = function()
-- Only add style, inherit or link to the LSP's colors
vim.cmd([[
highlight! semshiGlobal gui=italic
highlight! link semshiGlobal @none
highlight! link semshiImported @none
highlight! link semshiParameter @lsp.type.parameter
highlight! link semshiParameterUnused DiagnosticUnnecessary
highlight! link semshiBuiltin @function.builtin
highlight! link semshiAttribute @field
highlight! link semshiSelf @lsp.type.selfKeyword
highlight! link semshiUnresolved @lsp.type.unresolvedReference
highlight! link semshiUnresolved @none
highlight! link semshiFree @none
highlight! link semshiAttribute @none
highlight! link semshiParameterUnused @none
]])
end,
})