mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-09 17:04:36 +02:00
feat(settings): better default icons
This commit is contained in:
parent
ddfb556f58
commit
e42337f02a
1 changed files with 38 additions and 24 deletions
|
@ -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 = " ",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue