summaryrefslogtreecommitdiffstats
path: root/lua/icons.lua
blob: b53532dd793ae0a32df985b6f8515f45c1b2e150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
return {
    kinds = {
	Array = ' ',
	Boolean = ' ',
	Class = ' ',
	Color = ' ',
	Constant = ' ',
	Constructor = ' ',
	Copilot = ' ',
	Enum = ' ',
	EnumMember = ' ',
	Event = ' ',
	Field = ' ',
	File = ' ',
	Folder = ' ',
	Function = ' ',
	Interface = ' ',
	Key = ' ',
	Keyword = ' ',
	Method = ' ',
	Module = ' ',
	Namespace = ' ',
	Null = ' ',
	Number = ' ',
	Object = ' ',
	Operator = ' ',
	Package = ' ',
	Property = ' ',
	Reference = ' ',
	Snippet = ' ',
	String = ' ',
	Struct = ' ',
	Text = ' ',
	TypeParameter = ' ',
	Unit = ' ',
	Value = ' ',
	Variable = ' ',
    },
}