return { -- Neovim Updater "rootiest/nvim-updater.nvim", lazy = false, opts = {}, keys = { { "quU", ":UpdateNeovim", desc = "Update Neovim", }, { "quD", function() require("nvim_updater").update_neovim({ build_type = "Debug" }) end, desc = "Debug Build Neovim", }, { "quR", function() require("nvim_updater").update_neovim({ build_type = "Release" }) end, desc = "Release Build Neovim", }, { "quC", function() require("nvim_updater").remove_source_dir() end, desc = "Clean Neovim Source", }, }, dev = vim.g.rootiest_dev or false, }