Neovim: add dashboard

This commit is contained in:
Marko Korhonen 2023-04-14 00:02:58 +03:00
parent a9c8c5c775
commit 70bf63b61a
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,22 @@
return function()
require("dashboard").setup({
theme = "hyper",
config = {
week_header = {
enable = true,
},
shortcut = {
{ desc = " Update", group = "@property", action = "Lazy update", key = "u" },
{
icon = "",
icon_hl = "@variable",
desc = "Files",
group = "Label",
action = "Telescope find_files",
key = "f",
},
{ desc = "Quit", action = "q", key = "q" },
},
},
})
end