update lua

This commit is contained in:
Daylin Morgan 2024-11-19 08:56:13 -06:00
parent 3b6e09c17f
commit 5d9dd00df2
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -1,8 +1,10 @@
return { return {
{ {
"nvimdev/dashboard-nvim", "folke/snacks.nvim",
opts = function(_, opts) opts = {
local logo = [[ dashboard = {
preset = {
header = [[
@ -22,21 +24,24 @@ return {
]]
]],
-- TODO:: -- stylua: ignore
-- originally used to set highlight group to change header color in alpha ---@type snacks.dashboard.Item[]
-- now would need to maybe use an AutoCmd to change DashboardHeader keys = {
{ icon = "", key = "f", desc = "Find File", action = ":lua Snacks.dashboard.pick('files')" },
-- math.randomseed(os.time()) { icon = "", key = "n", desc = "New File", action = ":ene | startinsert" },
-- local function pick_color() { icon = "", key = "g", desc = "Find Text", action = ":lua Snacks.dashboard.pick('live_grep')" },
-- local colors = { "String", "Identifier", "Keyword", "Number" } { icon = "", key = "r", desc = "Recent Files", action = ":lua Snacks.dashboard.pick('oldfiles')" },
-- return colors[math.random(#colors)] { icon = "", key = "c", desc = "Config", action = ":lua Snacks.dashboard.pick('files', {cwd = vim.fn.stdpath('config')})" },
-- end { icon = "", key = "s", desc = "Restore Session", section = "session" },
-- { icon = "", key = "x", desc = "Lazy Extras", action = ":LazyExtras" },
opts.config.header = vim.split(logo, "\n") { icon = "󰒲 ", key = "l", desc = "Lazy", action = ":Lazy" },
return opts { icon = "", key = "q", desc = "Quit", action = ":qa" },
end, },
},
},
},
}, },
{ {
"folke/edgy.nvim", "folke/edgy.nvim",