From 6490bac4616cd50caf586e25bccdfec934026601 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sun, 14 May 2023 14:56:59 +0200 Subject: [PATCH] fix(nerdfont): broken Symbols in Alpha dashboard --- nvim/lua/plugins/alpha.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/lua/plugins/alpha.lua b/nvim/lua/plugins/alpha.lua index 29fae58..b4d75a6 100644 --- a/nvim/lua/plugins/alpha.lua +++ b/nvim/lua/plugins/alpha.lua @@ -13,12 +13,12 @@ return { opts.section.buttons.val = { opts.button("f", " " .. " Find file", ":Telescope find_files "), opts.button("n", " " .. " New file", ":ene startinsert "), - opts.button("r", " " .. " Recent files", ":Telescope oldfiles "), + opts.button("r", "󰈞 " .. " Recent files", ":Telescope oldfiles "), opts.button("g", " " .. " Find text", ":Telescope live_grep "), opts.button("p", " " .. " Find Project", ":Telescope projects"), - opts.button("s", "勒" .. " Restore Session", [[:lua require("persistence").load() ]]), - opts.button("l", "鈴" .. " Lazy (Plugins)", ":Lazy"), - opts.button("m", " " .. " Mason (LSP, DAP, Linter, Formatter)", ":Mason"), + opts.button("s", "󰁯" .. " Restore Session", [[:lua require("persistence").load() ]]), + opts.button("l", "󰒲" .. " Lazy (Plugins)", ":Lazy"), + opts.button("m", "󱊈" .. " Mason (LSP, DAP, Linter, Formatter)", ":Mason"), opts.button("q", " " .. " Quit", ":qa"), opts.padding, }