neovim-config/lua/plugins/configs/lspkind_icons.lua

30 lines
528 B
Lua
Raw Normal View History

2021-11-17 05:30:57 +00:00
local icons = {
2021-08-27 02:23:06 +00:00
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 = "",
2021-08-27 02:23:06 +00:00
}
2021-11-17 05:30:57 +00:00
return icons