mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
31 lines
557 B
Lua
31 lines
557 B
Lua
|
return {
|
||
|
diagnostics = {
|
||
|
Error = " ",
|
||
|
Warn = " ",
|
||
|
Hint = " ",
|
||
|
Info = " ",
|
||
|
},
|
||
|
kinds = {
|
||
|
Class = " ",
|
||
|
Color = " ",
|
||
|
Constant = " ",
|
||
|
Constructor = " ",
|
||
|
Enum = "了 ",
|
||
|
EnumMember = " ",
|
||
|
Field = " ",
|
||
|
File = " ",
|
||
|
Folder = " ",
|
||
|
Function = " ",
|
||
|
Interface = "ﰮ ",
|
||
|
Keyword = " ",
|
||
|
Method = "ƒ ",
|
||
|
Property = " ",
|
||
|
Snippet = " ",
|
||
|
Struct = " ",
|
||
|
Text = " ",
|
||
|
Unit = " ",
|
||
|
Value = " ",
|
||
|
Variable = " ",
|
||
|
},
|
||
|
}
|