dotfiles/dot_config/nvim/after/plugin/dashboard.lua
2026-02-06 09:15:12 +01:00

20 lines
615 B
Lua

-- English comments only.
local ok, db = pcall(require, "dashboard")
if not ok then return end
db.setup({
theme = "hyper",
config = {
week_header = { enable = true },
shortcut = {
{ desc = "Files", group = "Label", key = "f", action = "Telescope find_files" },
{ desc = "Grep", group = "Label", key = "g", action = "Telescope live_grep" },
{ desc = "Config", group = "Label", key = "c", action = "edit ~/.config/nvim/init.lua" },
{ desc = "Quit", group = "Label", key = "q", action = "qa" },
},
project = { enable = true, limit = 8 },
mru = { limit = 10 },
},
})