diff --git a/lua/plugins/nvim_updater.lua b/lua/plugins/nvim_updater.lua new file mode 100644 index 0000000..236d712 --- /dev/null +++ b/lua/plugins/nvim_updater.lua @@ -0,0 +1,24 @@ +return { -- Neovim Updater + "rootiest/nvim-updater.nvim", + config = function() + require("nvim_updater").setup({}) + end, + cmd = { + "UpdateNeovim", + }, + keys = { + { + "quU", + ":UpdateNeovim", + desc = "Update Neovim", + }, + { + "quD", + function() + require("nvim_updater").update_neovim({ build_type = "Debug" }) + end, + desc = "Debug Build Neovim", + }, + }, + dev = true, +}