refactor: move icons to settings and add setup method for configs extending LazyVim (like my own dots)

This commit is contained in:
Folke Lemaitre 2023-01-03 21:04:35 +01:00
parent ff777b5efd
commit 7a49913cf2
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
8 changed files with 57 additions and 40 deletions

View file

@ -0,0 +1,35 @@
---@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