add a plugin to override the dashboard config link

This commit is contained in:
liv 2024-03-02 18:18:50 +01:00
parent b40007d643
commit 79c05c9bf0

View file

@ -0,0 +1,21 @@
-- Various dashboard adjustments
return {
"nvimdev/dashboard-nvim",
opts = function(_, opts)
-- Remove the original "config" button
table.remove(opts.config.center, 5)
-- Build a new button
local button = {
action = "Telescope find_files cwd=~/.local/share/chezmoi/",
desc = "Dotfiles",
icon = "⚙️ ",
key = "c",
}
button.desc = button.desc .. string.rep(" ", 43 - #button.desc)
button.key_format = " %s"
table.insert(opts.config.center, 5, button)
end,
}