summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* misc(nvim): add shortcut to copy file path to clipboardThomas Vanbesien2026-05-191-0/+1
|
* fix(nvim): narrow checklist guard to match item_range contractThomas Vanbesien2026-05-191-2/+2
| | | | | | | | | - item_range() returns nil or a full (start_row, end_row) pair; guards checked only start_row, leaving end_row integer|nil into nvim_buf_{get,set}_lines. - Guard now 'if not (start_row and end_row)' in check/uncheck; lua_ls narrows both, 4 param-type-mismatch warnings clear. - Behavior unchanged (end_row always set when start_row was); tested.
* refactor(nvim): single source of truth for per-ft formatting widthThomas Vanbesien2026-05-196-5/+11
| | | | | | | | | - vim.g.dotfiles.textwidth = { sh=80, lua=120, markdown=120, gitcommit=72 } defined once in init.lua. - bash/lua/markdown/gitcommit ftplugins + render-markdown read from it; mdformat --wrap already follows vim.bo.textwidth. - gitcommit gets an explicit textwidth line (was implicit runtime 72). - Behavior unchanged; one number now propagates everywhere.
* fix: root Claude Code lua_ls at ~/.config/nvimThomas Vanbesien2026-05-191-0/+1
| | | | | | | | | | | | | | - lua-lsp rooted lua_ls at $HOME: ignored .luarc.json, flooded 'Undefined global vim', no IntelliSense on the nvim config. - New local marketplace/plugin lua-lsp-local@local-lsp: .lsp.json sets workspaceFolder=~/.config/nvim, Neovim runtime as workspace.library, diagnostics.libraryFiles=Disable. - Disable official lua-lsp (enabledPlugins) so one server owns .lua. - Verified by probe: rootUri now file:///home/tvanbesi/.config/nvim, flood gone. - Annotate the intentional open_floating_preview monkey-patch (clears the now-correct duplicate-set-field). - README: validate/add/install/disable repro + plugin-update workflow.
* feat(nvim): add .luarc.json pointing lua_ls at the Neovim runtimeThomas Vanbesien2026-05-191-0/+8
| | | | | | | Sets workspace.library to $VIMRUNTIME so any lua_ls launcher resolves the `vim` global and vim.api.keyset.* types from the shipped ---@meta stubs, instead of flagging them as undefined. Read by lua_ls regardless of launcher (Neovim, external tooling).
* fix(nvim): correct popup rendering for bullets and LSP docsThomas Vanbesien2026-05-192-0/+25
| | | | | | | RenderMarkdownBullet now uses fg only (no bg) so list bullets adopt the window background instead of painting Normal's bg as a mismatched box in popups. open_floating_preview is wrapped to widen hover/signature docs to the 120-col line-length convention so long signatures wrap less.
* misc(nvim): embolden statusline diff/diagnostics, tidy lualine setupThomas Vanbesien2026-05-191-0/+25
| | | | | | | | | | Stamp bold onto lualine's generated lualine_b_diff*/diagnostics* highlight groups with nvim_set_hl update=true so only the bold bit changes (fg and section b background preserved), re-applied after each lualine (re)build: initial setup, theme switch, ColorScheme. Also carry the component/section separators into the background OptionSet handler so they survive the light/dark theme swap.
* fix(nvim): smooth scroll cursor at boundariesThomas Vanbesien2026-05-191-7/+17
|
* feat(nvim): focus-aware cursor line via per-window highlight namespacesThomas Vanbesien2026-05-194-91/+191
| | | | | | | | | | | Split 50-highlight.lua into 40-colors.lua (colorscheme, custom highlights, per-window namespaces, focus tracking) and 50-extmarks.lua (TODO scanner reading the namespace contract from vim.g.dotfiles). The 40- prefix guarantees colors load before extmarks. Focused vs unfocused windows now differ by cursor-line color and a CursorLineNr badge in the focus hue (green on dark, magenta on light); the number column stays visible on closed folds where CursorLine cannot.
* fix(nvim): correct tabpage handle vs. number in tablineThomas Vanbesien2026-05-191-2/+2
| | | | | | vim.t is keyed by tabpage handle while the %nT click region needs the positional number; the two were swapped, so renames and tab clicks mis-targeted after :tabmove reordered tabs.
* fix(nvim): preserve fold state when reloading a bufferThomas Vanbesien2026-05-191-0/+3
|
* fix(nvim): MarkdownListCheck/Uncheck work on multi-line itemsThomas Vanbesien2026-05-181-12/+73
|
* feat(nvim): persist tabpage names across sessionsThomas Vanbesien2026-05-181-0/+34
|
* fix(nvim): smooth scroll ignores lines in closed foldsThomas Vanbesien2026-05-181-13/+26
|
* misc(nvim): install git_rebase treesitter parserThomas Vanbesien2026-05-181-0/+1
|
* fix(nvim): match initial lualine theme to 'background'Thomas Vanbesien2026-05-181-1/+4
| | | | | | The hardcoded "solarized_light" loaded before any OptionSet autocmd could react to 'background', so dark sessions started with a light statusline until 'background' was touched.
* misc(nvim): remove dead code from markdown `format()`Thomas Vanbesien2026-05-181-4/+1
|
* fix(nvim): replace O(n²) loop concat with table.concatThomas Vanbesien2026-05-182-8/+2
|
* fix(nvim): don't skip every other TODO highlightThomas Vanbesien2026-05-181-1/+0
|
* fix(nvim): remove `tempname()` files in lua/markdown formattersThomas Vanbesien2026-05-182-0/+2
|
* misc: fix comments and typosThomas Vanbesien2026-05-185-5/+5
|
* fix(nvim): stop leaking options from gitcommit diff and qf buffersThomas Vanbesien2026-05-182-3/+3
|
* fix(nvim): remove broken keymapsThomas Vanbesien2026-05-181-4/+4
| | | | | No need to navigate windows in insert mode. The previous maps (insert mode) were deleting a word instead of navigating.
* misc: fix wording, comments, typosThomas Vanbesien2026-05-181-4/+4
|
* feat(nvim): add shortcuts to move tabpagesThomas Vanbesien2026-05-181-0/+3
|
* feat(nvim): add custom tabline pluginThomas Vanbesien2026-05-181-0/+72
|
* feat(nvim): add commands to check/uncheck markdown checklist itemsThomas Vanbesien2026-05-171-0/+30
|
* misc: commentThomas Vanbesien2026-05-171-1/+1
|
* misc: extract magic numberThomas Vanbesien2026-05-171-3/+4
|
* fix(nvim): fix gitcommit injection query with `; extends` directiveThomas Vanbesien2026-05-071-2/+2
| | | | It was just being applied at all.
* fix(nvim): disable lualine for qf buffersThomas Vanbesien2026-05-071-1/+1
|
* feat(nvim): add markdown rendering with `render-markdown.nvim`Thomas Vanbesien2026-05-075-45/+24
| | | | | | | | | | | | | See https://github.com/MeanderingProgrammer/render-markdown.nvim - Don't set `'colorcolumn'` and `'conceallevel'` in markdown ftplugin - Treesitter plugin doesn't install the markdown and markdown_inline parsers. `50-markdown.lua` does it instead, so that it is self-contained. It also installs extra parsers it needs: yaml, html and latex. - Remove markdown highlight adjustments in `50-colors.lua` - Remove `markdown/injections.scm` that was disabling treesitter highlighting inside fenced code blocks.
* misc: commentThomas Vanbesien2026-05-071-1/+1
|
* fix(nvim): gitcommit diff window starts unfoldedThomas Vanbesien2026-05-071-0/+1
|
* fix(nvim): fix last accessed tab keymap conflictThomas Vanbesien2026-05-071-1/+1
|
* feat(nvim): smooth scrolling pluginThomas Vanbesien2026-05-072-0/+38
|
* fix(nvim): use `stdpath('config')` for spellfile pathsThomas Vanbesien2026-05-071-2/+2
|
* fix(nvim): disable lualine in netrw buffersThomas Vanbesien2026-05-071-2/+4
|
* fix(nvim): `Dotfiles*` commands check if gitgutter is loadedThomas Vanbesien2026-05-071-2/+15
|
* feat: initial setupThomas Vanbesien2026-05-0627-0/+1178
- `dotfiles` (this project's CLI) - foot configuration - tmux configuration - bash configuration - nvim (as a git submodule) + configuration - ranger configuration - fzf configuration - KDE global shortcuts - Other miscellaneous dependencies