mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
35 lines
683 B
Lua
35 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
|