dotfiles/home/.config/nvim/lua/plugins/dashboard.lua

27 lines
645 B
Lua
Raw Normal View History

-- Startup dashboard
return {
"glepnir/dashboard-nvim",
event = "VimEnter",
dependencies = { { "kyazdani42/nvim-web-devicons" } },
opts = {
2023-04-14 00:02:58 +03:00
theme = "hyper",
config = {
week_header = {
enable = true,
},
shortcut = {
2023-04-14 00:14:27 +03:00
{ icon = "🧲 ", desc = "Update", group = "@property", action = "Lazy update", key = "u" },
2023-04-14 00:02:58 +03:00
{
2023-04-14 00:14:27 +03:00
icon = "🖹 ",
2023-04-14 00:02:58 +03:00
icon_hl = "@variable",
desc = "Files",
group = "Label",
action = "Telescope find_files",
key = "f",
},
2023-04-14 00:14:27 +03:00
{ icon = "", desc = "Quit", action = "q", key = "q" },
2023-04-14 00:02:58 +03:00
},
},
},
}