Files
neovim-config/lua/plugins/nvim_updater.lua
T
rootiest 4545e18a68 feat(config): various config updates
Packaged updates to configuration.
2025-08-23 11:52:26 -04:00

31 lines
1.2 KiB
Lua

-- ╭─────────────────────────────────────────────────────────╮
-- │ Nvim-Updater │
-- ╰─────────────────────────────────────────────────────────╯
-- return { -- Neovim Updater
-- 'rootiest/nvim-updater.nvim',
-- version = '*', -- Pin to GitHub releases
-- lazy = false,
-- opts = {
-- build_type = 'Release',
-- branch = 'master',
-- verbose = false,
-- check_for_updates = true,
-- update_interval = (60 * 60) * 6, -- 6 hours
-- notify_updates = false,
-- default_keymaps = false,
-- },
-- keys = function()
-- -- Load Neovim Updater Debugging Functions
-- require('config.nvim_updater') -- Debugging Functions
--
-- -- Add Neovim Updater menu
-- require('data.func').add_keymap(require('data.keys').group.nvimup)
-- -- Add Neovim Updater keys
-- return require('data.keys').nvimup
-- end,
-- dev = vim.g.rootiest_dev or false,
-- }
return {}