c28e6c3e59
- Add focusline.nvim for scroll-aware cursor centering - Add kitty-scrollback.nvim for Kitty terminal scrollback integration - Add qalc.nvim for inline calculator support - Add blink.lib as explicit dependency for blink.cmp - Fix blink.cmp binary detection to check v2 install path first - Add PackChanged autocmd to auto-rebuild blink.cmp after updates - Expand inc-rename.nvim config with all available options documented - Add luv library path to lazydev for vim.uv completions - Consolidate leader key setup into options.lua (remove duplicate in init.lua) - Add autoread + FocusGained/CursorHold triggers for external file changes - Add BufReadPost autocmd to restore last cursor position on file open - Reorganize options.lua with section headers and logical grouping - Update plugin lockfile revisions (blink.cmp, conform, gitsigns, lualine, etc.) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
42 lines
1.7 KiB
Lua
42 lines
1.7 KiB
Lua
--[[
|
|
┌────────────────────────────────────────────────────────────────┐
|
|
│ Rootiest Neovim │
|
|
└────────────────────────────────────────────────────────────────┘
|
|
--]]
|
|
|
|
-- Copyright (C) 2026 rootiest
|
|
--
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU General Public License as published by
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
-- (at your option) any later version.
|
|
--
|
|
-- This program is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
-- GNU General Public License for more details.
|
|
--
|
|
-- You should have received a copy of the GNU General Public License
|
|
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
-- Initialize global registry
|
|
_G.Config = {
|
|
plugins = {},
|
|
called = {},
|
|
}
|
|
|
|
-- Load core modules
|
|
require("lazyload") -- Plugin lazy-loading module
|
|
require("options") -- Configuration options
|
|
require("plugins") -- Plugin specifications and setup
|
|
require("keymaps") -- Key mappings
|
|
|
|
-- Source machine-local and secret overrides (silently ignored if absent)
|
|
local user_dots = vim.fn.expand("~/.config/.user-dots/nvim/")
|
|
for _, file in ipairs({ "secrets.lua", "local.lua" }) do
|
|
local path = user_dots .. file
|
|
if vim.fn.filereadable(path) == 1 then
|
|
dofile(path)
|
|
end
|
|
end
|