nvim/lua/config/dashboard.lua
Evie Litherland-Smith 4054030afc Initial add
Separate nvim config into separate project, to be used as submodule
for main dotfile
2023-05-04 12:39:25 +01:00

59 lines
1.6 KiB
Lua

return {
theme = "hyper",
config = {
week_header = {
enable = true,
},
shortcut = {
{ icon = "", desc = "Lazy", group = "@property", action = "Lazy", key = "l" },
{
icon = "",
icon_hl = "@variable",
desc = "Files",
group = "Files",
action = "Telescope find_files",
key = "f",
},
{
icon = "",
icon_hl = "@variable",
desc = "Projects",
group = "Files",
action = "Telescope projects",
key = "p",
},
{
icon = "",
icon_hl = "@variable",
desc = "Terminal",
group = "Files",
action = "ToggleTerm",
key = "t",
},
{
icon = "",
desc = "Neotree",
group = "Files",
action = "Neotree float reveal reveal_force_cwd",
key = "n",
},
{
icon = "",
icon_hl = "@variable",
desc = "Neogit",
group = "Label",
action = "Neogit",
key = "g",
},
{
icon = "",
icon_hl = "@variable",
desc = "Git commit",
group = "Label",
action = "Neogit commit",
key = "c",
},
},
},
}