feat(settings): better default icons

This commit is contained in:
Folke Lemaitre 2023-01-06 22:48:20 +01:00
parent ddfb556f58
commit e42337f02a
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -2,37 +2,51 @@
local settings = {
icons = {
diagnostics = {
Error = " ",
Warn = " ",
Error = " ",
Warn = " ",
Hint = "",
Info = " ",
Info = " ",
},
git = {
added = "",
modified = "",
modified = "",
removed = "",
},
kinds = {
Class = "",
Color = "",
Constant = "",
Constructor = "",
Enum = "",
EnumMember = "",
Field = "",
File = "",
Folder = "",
Function = "",
Interface = "",
Keyword = "",
Method = "ƒ ",
Property = "",
Snippet = "",
Struct = "",
Text = "",
Unit = "",
Value = "",
Variable = "",
Array = "",
Boolean = "",
Class = "",
Color = "",
Constant = "",
Constructor = "",
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 = "",
},
},
}