feat(config): various config updates

Packaged updates to configuration.
This commit is contained in:
2025-08-23 11:52:26 -04:00
parent 00b23548c3
commit 4545e18a68
20 changed files with 564 additions and 107 deletions
+25 -23
View File
@@ -2,27 +2,29 @@
-- │ Nvim-Updater │
-- ╰─────────────────────────────────────────────────────────╯
return { -- Neovim Updater
'rootiest/nvim-updater.nvim',
version = '*', -- Pin to GitHub releases
lazy = false,
opts = {
build_type = 'RelWithDebInfo',
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
-- 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,
-- }
-- 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 {}