mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-16 12:24:36 +02:00
refactor: move icons to settings and add setup method for configs extending LazyVim (like my own dots)
This commit is contained in:
parent
ff777b5efd
commit
7a49913cf2
8 changed files with 57 additions and 40 deletions
35
lua/lazyvim/config/settings.lua
Normal file
35
lua/lazyvim/config/settings.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue