return { "onsails/lspkind.nvim", config = function() require('lspkind').init({ mode = 'symbol_text', preset = 'codicons', symbol_map = { Copilot = "", Text = "󰉿", Method = "󰆧", Function = "󰊕", Constructor = "", Field = "󰜢", Variable = "󰀫", Class = "󰠱", Interface = "", Module = "", Property = "󰜢", Unit = "󰑭", Value = "󰎠", Enum = "", Keyword = "󰌋", Snippet = "", Color = "󰏘", File = "󰈙", Reference = "󰈇", Folder = "󰉋", EnumMember = "", Constant = "󰏿", Struct = "󰙅", Event = "", Operator = "󰆕", TypeParameter = "", }, }) vim.api.nvim_set_hl(0, "CmpItemKindCopilot", {fg ="#6CC644"}) end }