diff --git a/lua/lazyvim/config/init.lua b/lua/lazyvim/config/init.lua index d0b7a6a4..4950a9c3 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 = { @@ -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 17c93c36..83824e25 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -240,9 +240,9 @@ return { dashboard.section.header.val = vim.split(logo, "\n") dashboard.section.buttons.val = { - dashboard.button("f", " " .. " Find file", ":Telescope find_files "), + 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() ]]),