From 79c05c9bf006edc41c978592401fccf4b3dbe0e5 Mon Sep 17 00:00:00 2001 From: liv Date: Sat, 2 Mar 2024 18:18:50 +0100 Subject: [PATCH] add a plugin to override the dashboard config link --- dot_config/nvim/lua/plugins/dashboard.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 dot_config/nvim/lua/plugins/dashboard.lua diff --git a/dot_config/nvim/lua/plugins/dashboard.lua b/dot_config/nvim/lua/plugins/dashboard.lua new file mode 100644 index 0000000..f192a17 --- /dev/null +++ b/dot_config/nvim/lua/plugins/dashboard.lua @@ -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, +}