| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
Neovim 0.12 changed the signature from a table { bufnr = N } to a
plain integer bufnr parameter.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Replace lazy.nvim plugin manager with Neovim 0.12's native vim.pack API.
All plugin config files rewritten from lazy.nvim spec tables to imperative
require/setup format with explicit vim.keymap.set() calls.
Key changes:
- vim.pack.add() with ~53 plugins in init.lua
- blink.cmp/pairs/download pinned to version tags (vim.version.range)
- PackChanged autocmd for markdown-preview build hook
- Ordered requires: colorscheme → ui → treesitter → completion → lsp → rest
- Plugin setup guards (gitsigns, which-key, blink.cmp) handle deferred
plugin/ file loading correctly
Net reduction: ~438 lines across 13 files.
|
| | |
|
| |
|
|
|
| |
Auto-loaded as dependency by neogit, gitlinker, gitsigns, and
refactoring.nvim. Standalone spec was unnecessary.
|
| |
|
|
|
| |
Marginal utility (auto-sizing cmdheight) for startup cost of
a lazy=false plugin with empty opts.
|
| |
|
|
|
| |
Neotest plugin was removed but its which-key group and
close-with-q filetypes remained as dead config.
|
| |
|
|
|
| |
Redundant with copilot.lua (inline completions via NES) and
Copilot CLI (chat/agentic workflows outside the editor).
|
| |
|
|
|
|
|
|
|
|
|
| |
Remove version pin and migrate to v2 API:
- run_template() → run_task()
- prompt="never" → disallow_prompt=true
- Shell template removed → vim.cmd("OverseerShell")
- list_tasks recent_first removed → sort by task id
This also resolves the vim.validate deprecation warning from
checkhealth, which was fixed upstream in v2.0.0.
|
| |
|
|
|
|
|
|
| |
Remap live_grep from <localleader>g to <localleader>/ to avoid
overlapping with git fzf commands (<localleader>gc, gb, gs, etc.)
which caused a timeout delay on <localleader>g.
Also fix buffers mapping desc that incorrectly said [G]rep.
|
| |
|
|
|
| |
The name ts.lua is ambiguous (TypeScript vs treesitter). Use the full name
for clarity.
|
| |
|
|
|
|
| |
The 120-line LspAttach handler (fzf-lua navigation, document highlighting,
codelens, inlay hints) belongs with the LSP plugin configuration, not in
generic autocmds. This puts all LSP behavior in one file.
|
| |
|
|
|
| |
Move copilot.lua from completion.lua and codecompanion from plugins/init.lua
into a dedicated ai.lua file. Both are AI-related, not completion.
|
| |
|
|
|
| |
Move auto-session config (85 lines, with overseer and dap integration) from
plugins/init.lua into a dedicated session.lua file.
|
| |
|
|
|
| |
Move the overseer task runner config (140 lines, 13 keymaps) from the
plugins/init.lua junk drawer into a dedicated runner.lua file.
|
| |
|
|
|
| |
Move surround, guess-indent, various-textobjs, dial, and refactoring from
the 521-line plugins/init.lua junk drawer into a dedicated editing.lua file.
|
| |
|
|
|
|
|
|
| |
Two separate LspAttach handlers existed in autocmds.lua and search.lua,
fragmenting LSP behavior across files. Merge fzf-lua LSP navigation
mappings into the main LspAttach handler in autocmds.lua using lazy
require('fzf-lua'). This makes all LSP-on-attach behavior visible in one
place.
|
|
|
Rename lua/custom/plugins/ to lua/plugins/ following the standard lazy.nvim
convention. The extra custom/ nesting added no value. Update import path in
init.lua accordingly.
|