diff --git a/lua/lsp/kind.lua b/lua/lsp/kind.lua index bfa6016..85beb6d 100644 --- a/lua/lsp/kind.lua +++ b/lua/lsp/kind.lua @@ -67,12 +67,12 @@ function M.get(kind) if not name or not M.ICONS[name] then return nil, nil end - return M.ICONS[name], "OwLspKind" .. name + return M.ICONS[name], "LspKind" .. name end local function register_highlights() for name in pairs(M.ICONS) do - vim.api.nvim_set_hl(0, "OwLspKind" .. name, { + vim.api.nvim_set_hl(0, "LspKind" .. name, { link = DEFAULT_HIGHLIGHTS[name] or "Pmenu", default = true, }) diff --git a/plugins/onedark.lua b/plugins/onedark.lua index a1b2cb1..4081e8d 100644 --- a/plugins/onedark.lua +++ b/plugins/onedark.lua @@ -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()