From e42337f02ab5988666513a495f7c1ba8bc0254ed Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 6 Jan 2023 22:48:20 +0100 Subject: [PATCH] feat(settings): better default icons --- lua/lazyvim/config/settings.lua | 62 ++++++++++++++++++++------------- 1 file changed, 38 insertions(+), 24 deletions(-) diff --git a/lua/lazyvim/config/settings.lua b/lua/lazyvim/config/settings.lua index 490e8786..f2b3c61a 100644 --- a/lua/lazyvim/config/settings.lua +++ b/lua/lazyvim/config/settings.lua @@ -2,37 +2,51 @@ local settings = { icons = { diagnostics = { - Error = " ", - Warn = " ", + Error = " ", + Warn = " ", Hint = " ", - Info = " ", + Info = " ", }, git = { added = " ", - modified = "柳", + modified = " ", removed = " ", }, kinds = { - Class = " ", - Color = " ", - Constant = " ", - Constructor = " ", - Enum = "了 ", - EnumMember = " ", - Field = " ", - File = " ", - Folder = " ", - Function = " ", - Interface = "ﰮ ", - Keyword = " ", - Method = "ƒ ", - Property = " ", - Snippet = "﬌ ", - Struct = " ", - Text = " ", - Unit = " ", - Value = " ", - Variable = " ", + 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 = " ", }, }, }