LazyVim.LazyVim/lua/lazyvim/config/settings.lua

55 lines
1.1 KiB
Lua
Raw Normal View History

---@class LazyVimSettings
local settings = {
icons = {
diagnostics = {
2023-01-06 22:48:20 +01:00
Error = "",
Warn = "",
Hint = "",
2023-01-06 22:48:20 +01:00
Info = "",
},
git = {
added = "",
2023-01-06 22:48:20 +01:00
modified = "",
removed = "",
},
kinds = {
2023-01-06 22:48:20 +01:00
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 = "",
},
},
}
return settings