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

32 lines
531 B
Lua
Raw Normal View History

2021-08-27 04:23:06 +02:00
local M = {}
M.icons = {
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 = "",
}
return M