fix(lsp.kind): drop prefix in highlight names

This commit is contained in:
2026-04-17 19:17:56 +02:00
parent a811cf8a6b
commit 0fbb738e78
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ local highlights = {
GitNew = { fg = c.green },
}
for kind, color in pairs(completion_kind_colors) do
highlights["OwLspKind" .. kind] = { fg = color }
highlights["LspKind" .. kind] = { fg = color }
end
require("onedark").set_options("highlights", highlights)
require("onedark").load()