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 = { local settings = {
icons = { icons = {
diagnostics = { diagnostics = {
Error = " ", Error = " ",
Warn = " ", Warn = " ",
Hint = "", Hint = "",
Info = " ", Info = " ",
}, },
git = { git = {
added = "", added = "",
modified = "", modified = "",
removed = "", removed = "",
}, },
kinds = { kinds = {
Class = "", Array = "",
Color = "", Boolean = "",
Constant = "", Class = "",
Constructor = "", Color = "",
Enum = "", Constant = "",
EnumMember = "", Constructor = "",
Field = "", Enum = "",
File = "", EnumMember = "",
Folder = "", Event = "",
Function = "", Field = "",
Interface = "", File = "",
Keyword = "", Folder = "",
Method = "ƒ ", Function = "",
Property = "", Interface = "",
Snippet = "", Key = "",
Struct = "", Keyword = "",
Text = "", Method = "",
Unit = "", Module = "",
Value = "", Namespace = "",
Variable = "", Null = "",
Number = "",
Object = "",
Operator = "",
Package = "",
Property = "",
Reference = "",
Snippet = "",
String = "",
Struct = "",
Text = "",
TypeParameter = "",
Unit = "",
Value = "",
Variable = "",
}, },
}, },
} }