From 4507afcab3b9eef203e81c0dc0e1f3953caaab79 Mon Sep 17 00:00:00 2001 From: liv Date: Tue, 23 Jul 2024 16:44:41 +0200 Subject: [PATCH] add chezmoi plugin, change keymaps --- dot_config/nvim/lua/plugins/dashboard.lua | 24 ----------------------- dot_config/nvim/lua/plugins/keymaps.lua | 1 + 2 files changed, 1 insertion(+), 24 deletions(-) delete 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 deleted file mode 100644 index 834218e..0000000 --- a/dot_config/nvim/lua/plugins/dashboard.lua +++ /dev/null @@ -1,24 +0,0 @@ --- 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, - keys = { - { "qc", "Telescope find_files cwd=~/.local/share/chezmoi", desc = "Find in dotfiles" }, - }, -} diff --git a/dot_config/nvim/lua/plugins/keymaps.lua b/dot_config/nvim/lua/plugins/keymaps.lua index 8a87ae5..14eb4f1 100644 --- a/dot_config/nvim/lua/plugins/keymaps.lua +++ b/dot_config/nvim/lua/plugins/keymaps.lua @@ -4,5 +4,6 @@ return { "nvim-telescope/telescope.nvim", keys = { { "", "Telescope find_files", desc = "Find files" }, + { "qc", "Telescope chezmoi", desc = "Find in dotfiles" }, }, }