fix: remove type annotations

This commit is contained in:
Calvin Bochulak 2024-06-12 21:37:09 -06:00
parent 545796be96
commit 974ae394b3
No known key found for this signature in database
GPG key ID: 49927EF8F85114FB

View file

@ -23,11 +23,11 @@ return {
dashboard.section.header.val = vim.split(logo, "\n")
-- stylua: ignore
dashboard.section.buttons.val = {
dashboard.button("f", "" .. " Find file", LazyVim.pick() --[[@as string]]),
dashboard.button("f", "" .. " Find file", LazyVim.pick()),
dashboard.button("n", "" .. " New file", [[<cmd> ene <BAR> startinsert <cr>]]),
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("r", "" .. " Recent files", LazyVim.pick("oldfiles")),
dashboard.button("g", "" .. " Find text", LazyVim.pick("live_grep")),
dashboard.button("c", "" .. " Config", LazyVim.pick.config_files()),
dashboard.button("s", "" .. " Restore Session", [[<cmd> lua require("persistence").load() <cr>]]),
dashboard.button("x", "" .. " Lazy Extras", "<cmd> LazyExtras <cr>"),
dashboard.button("l", "󰒲 " .. " Lazy", "<cmd> Lazy <cr>"),