feat(nvim): update cmp icons

This commit is contained in:
Bruno Carlin 2025-02-11 15:23:05 +01:00
parent e37a102315
commit 83bb18fdd1

View file

@ -2,30 +2,30 @@ local cmp = require('cmp')
local kind_icons = {
Text = "",
Method = "",
Function = "",
Method = "",
Function = "󰡱",
Constructor = "",
Field = "",
Variable = "",
Class = "",
Field = "󰇽",
Variable = "󰀫",
Class = "󰠱",
Interface = "",
Module = "",
Property = "",
Property = "󰇽",
Unit = "",
Value = "",
Enum = "",
Keyword = "",
Value = "󰎠",
Enum = "",
Keyword = "󰌋",
Snippet = "",
Color = "",
File = "",
Color = "󰏘",
File = "󰈙",
Reference = "",
Folder = "",
EnumMember = "",
Constant = "",
Struct = "",
Folder = "󰉋",
EnumMember = "",
Constant = "󰏿",
Struct = "󰙅",
Event = "",
Operator = "",
TypeParameter = ""
Operator = "󰆕",
TypeParameter = "󰅲"
}
local has_words_before = function()