aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/lua/plugins/init.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor: replace tmux.nvim with smart-splits.nvim for zellijLibravatar sommerfeld41 hours1-5/+6
| | | | | | | | | | - Swap aserowy/tmux.nvim for mrjones2014/smart-splits.nvim in init.lua - Configure Ctrl h/j/k/l navigation keymaps (same keys as before) - Add vim-zellij-navigator WASM plugin keybindings to zellij config - Remove tmux treesitter parser (no longer needed) smart-splits.nvim auto-detects zellij as the multiplexer and provides seamless split/pane navigation across neovim and zellij boundaries.
* feat: migrate from lazy.nvim to vim.packLibravatar sommerfeld41 hours1-89/+54
| | | | | | | | | | | | | | | | 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.
* chore: remove explicit plenary.nvim specLibravatar sommerfeld41 hours1-1/+0
| | | | | Auto-loaded as dependency by neogit, gitlinker, gitsigns, and refactoring.nvim. Standalone spec was unnecessary.
* chore: remove dead neotest referencesLibravatar sommerfeld41 hours1-1/+0
| | | | | Neotest plugin was removed but its which-key group and close-with-q filetypes remained as dead config.
* refactor: extract AI plugins to plugins/ai.luaLibravatar sommerfeld41 hours1-53/+0
| | | | | Move copilot.lua from completion.lua and codecompanion from plugins/init.lua into a dedicated ai.lua file. Both are AI-related, not completion.
* refactor: extract auto-session to plugins/session.luaLibravatar sommerfeld41 hours1-86/+0
| | | | | Move auto-session config (85 lines, with overseer and dap integration) from plugins/init.lua into a dedicated session.lua file.
* refactor: extract overseer to plugins/runner.luaLibravatar sommerfeld41 hours1-142/+0
| | | | | Move the overseer task runner config (140 lines, 13 keymaps) from the plugins/init.lua junk drawer into a dedicated runner.lua file.
* refactor: extract editing plugins to plugins/editing.luaLibravatar sommerfeld41 hours1-144/+0
| | | | | Move surround, guess-indent, various-textobjs, dial, and refactoring from the 521-line plugins/init.lua junk drawer into a dedicated editing.lua file.
* refactor: flatten custom/plugins/ to plugins/Libravatar sommerfeld41 hours1-0/+521
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.