From 545796be9627e36fa73bc410e2eadd66def4c3b4 Mon Sep 17 00:00:00 2001 From: Calvin Bochulak Date: Wed, 12 Jun 2024 13:23:47 -0600 Subject: [PATCH] Update lua/lazyvim/plugins/extras/ui/alpha.lua Co-authored-by: Iordanis Petkakis <12776461+dpetka2001@users.noreply.github.com> --- lua/lazyvim/plugins/extras/ui/alpha.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/lazyvim/plugins/extras/ui/alpha.lua b/lua/lazyvim/plugins/extras/ui/alpha.lua index e6c1fbfa..4f08340a 100644 --- a/lua/lazyvim/plugins/extras/ui/alpha.lua +++ b/lua/lazyvim/plugins/extras/ui/alpha.lua @@ -23,11 +23,11 @@ return { dashboard.section.header.val = vim.split(logo, "\n") -- stylua: ignore dashboard.section.buttons.val = { - dashboard.button("f", " " .. " Find file", [[ lua LazyVim.pick() ]]), + dashboard.button("f", " " .. " Find file", LazyVim.pick() --[[@as string]]), dashboard.button("n", " " .. " New file", [[ ene startinsert ]]), - dashboard.button("r", " " .. " Recent files", [[ lua LazyVim.pick("oldfiles") ]]), - dashboard.button("g", " " .. " Find text", [[ lua LazyVim.pick("live_grep") ]]), - dashboard.button("c", " " .. " Config", [[ lua LazyVim.pick.config_files() ]]), + dashboard.button("r", " " .. " Recent files", LazyVim.pick("oldfiles") --[[@as string]]), + dashboard.button("g", " " .. " Find text", LazyVim.pick("live_grep") --[[@as string]]), + dashboard.button("c", " " .. " Config", LazyVim.pick.config_files() --[[@as string]]), dashboard.button("s", " " .. " Restore Session", [[ lua require("persistence").load() ]]), dashboard.button("x", " " .. " Lazy Extras", " LazyExtras "), dashboard.button("l", "󰒲 " .. " Lazy", " Lazy "),