aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/lua/plugins
Commit message (Collapse)AuthorAgeFilesLines
* chore: remove all X11/Xorg configs and referencesLibravatar sommerfeld42 hours1-1/+0
| | | | | | | | | | | | | | | Removed: - home/.config/{X11,bspwm,sxhkd,polybar,rofi,dunst,sxiv,sx,alacritty} - meta/{x-base,x-de,x-extra} metapackages - barscripts/ (polybar GPU scripts) - nvim sxhkdrc ftplugin and treesitter parser Updated: - mimeapps.list: sxiv → imv - ghostty config: bspwm → sway comment - .zshrc: alacritty → xterm-ghostty in TERM check - .zprofile: removed bspwm from comment - copilot-instructions.md: removed X11 references
* feat: add Ctrl-F to accept Copilot NES in insert modeLibravatar sommerfeld42 hours1-0/+11
|
* refactor: audit and fix neovim keybindsLibravatar sommerfeld42 hours3-16/+28
| | | | | | | | | | | | - fix visual p register clobbering: use "_dP black-hole pattern - remove ; -> : mapping: restore native repeat-find motion - remove <C-a>/<C-e> -> ^/$ emacs mappings: anti-vim-philosophy - map dial.nvim to <C-a>/<C-x>/g<C-a>/g<C-x> (standard increment keys) - remove redundant <leader>oq diagnostic loclist (covered by <leader>tl) - collapse <leader>{,v,x,t}D type-def onto g{v,x,t}t pattern (0.12 grt) - move <leader>oc/<leader>ic calls to <leader>co/<leader>ci (Code group) - add gvr/gxr/gtr for references in splits - remove empty <leader>s and <leader>d which-key group declarations
* fix: replace deprecated codelens.refresh with codelens.enableLibravatar sommerfeld42 hours1-11/+1
| | | | | | vim.lsp.codelens.refresh({ bufnr }) is deprecated in 0.12. Use vim.lsp.codelens.enable(true, { bufnr }) which handles the autocmds internally.
* refactor: replace tmux.nvim with smart-splits.nvim for zellijLibravatar sommerfeld42 hours2-6/+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.
* fix: wrap tblgen_lsp_server enable in pcallLibravatar sommerfeld42 hours1-1/+1
| | | | | Server binary may not be installed on all machines. Wrap in pcall to prevent startup errors when tblgen_lsp_server is unavailable.
* fix: correct inlay_hint.is_enabled API for Neovim 0.12Libravatar sommerfeld42 hours1-1/+1
| | | | | Neovim 0.12 changed the signature from a table { bufnr = N } to a plain integer bufnr parameter.
* feat: migrate from lazy.nvim to vim.packLibravatar sommerfeld42 hours12-1510/+991
| | | | | | | | | | | | | | | | 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 stale codecompanion source from blink.cmpLibravatar sommerfeld42 hours1-1/+0
|
* chore: remove explicit plenary.nvim specLibravatar sommerfeld42 hours1-1/+0
| | | | | Auto-loaded as dependency by neogit, gitlinker, gitsigns, and refactoring.nvim. Standalone spec was unnecessary.
* chore: remove auto-cmdheight.nvimLibravatar sommerfeld42 hours1-5/+0
| | | | | Marginal utility (auto-sizing cmdheight) for startup cost of a lazy=false plugin with empty opts.
* chore: remove dead neotest referencesLibravatar sommerfeld42 hours1-1/+0
| | | | | Neotest plugin was removed but its which-key group and close-with-q filetypes remained as dead config.
* chore: remove codecompanion.nvim and mcphub.nvimLibravatar sommerfeld42 hours1-53/+0
| | | | | Redundant with copilot.lua (inline completions via NES) and Copilot CLI (chat/agentic workflows outside the editor).
* feat: update overseer.nvim from v1.6.0 to v2Libravatar sommerfeld42 hours1-18/+21
| | | | | | | | | | | 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.
* fix: resolve which-key overlap and wrong desc in search.luaLibravatar sommerfeld42 hours1-3/+3
| | | | | | | | 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.
* refactor: rename ts.lua to treesitter.luaLibravatar sommerfeld42 hours1-0/+0
| | | | | The name ts.lua is ambiguous (TypeScript vs treesitter). Use the full name for clarity.
* refactor: move LspAttach handler from autocmds.lua to plugins/lsp.luaLibravatar sommerfeld42 hours1-0/+138
| | | | | | 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.
* refactor: extract AI plugins to plugins/ai.luaLibravatar sommerfeld42 hours3-95/+97
| | | | | 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 sommerfeld42 hours2-86/+84
| | | | | 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 sommerfeld42 hours2-142/+144
| | | | | 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 sommerfeld42 hours2-144/+146
| | | | | 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: consolidate LspAttach handlers into single callbackLibravatar sommerfeld42 hours1-64/+0
| | | | | | | | 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.
* refactor: flatten custom/plugins/ to plugins/Libravatar sommerfeld42 hours8-0/+1559
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.