diff --git a/lua/lazyvim/config/init.lua b/lua/lazyvim/config/init.lua index 1caa03b9..9e881c7c 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..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() ]]),