nvim/plugin-confs/lsp-kind.lua

34 lines
706 B
Lua
Raw Permalink Normal View History

2022-11-02 22:50:13 -07:00
-- lspkind.lua
local lspkind = require("lspkind")
lspkind.init({
2023-05-03 23:59:17 -07:00
preset = 'default',
2022-11-02 22:50:13 -07:00
symbol_map = {
2023-05-03 23:59:17 -07:00
Copilot = "",
Function = "󰊕",
Text = "󰊄",
Method = "󰆧",
Operator = "󰆕",
Keyword = "󰌋",
Variable = "󰂡",
Field = "󰇽",
Class = "󰠱",
Interface = "",
Module = "",
Property = "󰜢",
Unit = "",
Value = "󰎠",
Enum = "",
Snippet = "",
Color = "󰏘",
File = "󰈙",
Reference = "",
Folder = "󰉋",
EnumMember = "",
Constant = "󰏿",
Struct = "",
Event = "",
TypeParameter = "󰅲",
2022-11-02 22:50:13 -07:00
},
})
vim.api.nvim_set_hl(0, "CmpItemKindCopilot", {fg ="#6CC644"})