From c2ed86db3e11008813575f59f0917489339e2518 Mon Sep 17 00:00:00 2001 From: loichyan Date: Thu, 16 Mar 2023 16:48:59 +0800 Subject: [PATCH] fix(icons): replace obsolete icons --- lua/lazyvim/config/init.lua | 6 +++--- lua/lazyvim/plugins/ui.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/lazyvim/config/init.lua b/lua/lazyvim/config/init.lua index 1caa03b9..d0b7a6a4 100644 --- a/lua/lazyvim/config/init.lua +++ b/lua/lazyvim/config/init.lua @@ -21,7 +21,7 @@ local defaults = { diagnostics = { Error = " ", Warn = " ", - Hint = " ", + Hint = "󰌶 ", Info = " ", }, git = { @@ -42,7 +42,7 @@ local defaults = { Event = " ", Field = " ", File = " ", - Folder = " ", + Folder = "󰉋 ", Function = " ", Interface = " ", Key = " ", @@ -50,7 +50,7 @@ local defaults = { Method = " ", Module = " ", Namespace = " ", - Null = "ﳠ ", + Null = "󰟢 ", Number = " ", Object = " ", Operator = " ", diff --git a/lua/lazyvim/plugins/ui.lua b/lua/lazyvim/plugins/ui.lua index a4362cf9..17c93c36 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -242,7 +242,7 @@ return { dashboard.section.buttons.val = { dashboard.button("f", " " .. " Find file", ":Telescope find_files "), dashboard.button("n", " " .. " New file", ":ene startinsert "), - dashboard.button("r", " " .. " Recent files", ":Telescope oldfiles "), + dashboard.button("r", "󰄉 " .. " Recent files", ":Telescope oldfiles "), dashboard.button("g", " " .. " Find text", ":Telescope live_grep "), dashboard.button("c", " " .. " Config", ":e $MYVIMRC "), dashboard.button("s", " " .. " Restore Session", [[:lua require("persistence").load() ]]),