Files
LazyVim/lua/lazyvim/config/settings.lua
T

36 lines
683 B
Lua

---@class LazyVimSettings
local settings = {
icons = {
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 = " ",
},
},
}
return settings