summaryrefslogtreecommitdiffstats
path: root/.config/nvim/plugin/40-colors.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor(nvim): rewrite the highlight and extended marks pluginsThomas Vanbesien7 days1-163/+0
|
* Revert "misc(nvim): make floating windows more visible"Thomas Vanbesien10 days1-3/+3
| | | | This reverts commit 6b15c9b1c27e810ca2395b8f5d77e49a31dd3d47.
* misc(nvim): make floating windows more visibleThomas Vanbesien12 days1-3/+3
|
* docs(nvim): commentThomas Vanbesien12 days1-12/+2
|
* misc(nvim): edit floating window and popup menu styleThomas Vanbesien12 days1-0/+9
| | | | Same bg as what's behind and a visible rounded border.
* misc(nvim): edit comment, descriptions, and user command namesThomas Vanbesien12 days1-1/+1
|
* misc(nvim): lighter active cursorline highlightThomas Vanbesien2026-06-011-19/+6
|
* misc(nvim): remove dead codeThomas Vanbesien2026-06-011-2/+0
| | | | The Cursorline highlight is overwritten by `set_cursorline_hl()`.
* refactor(nvim): group vim.pack.add() callsThomas Vanbesien2026-05-291-1/+0
| | | | | This is to avoid getting many prompts when launching nvim and installing the packages initially.
* misc(nvim): set tabline fg to yellowThomas Vanbesien2026-05-221-1/+2
|
* misc(nvim): set winbar to show cwd and pathThomas Vanbesien2026-05-221-0/+2
|
* misc(nvim): rounded borders and default bg color for floating windowsThomas Vanbesien2026-05-221-2/+0
|
* Revert "fix(nvim): correct popup rendering for bullets and LSP docs"Thomas Vanbesien2026-05-221-7/+0
| | | | This reverts commit 601bdd23a87c71dac8e4c59474c5915db676190f.
* fix(nvim): correct popup rendering for bullets and LSP docsThomas Vanbesien2026-05-191-0/+7
| | | | | | | 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.
* feat(nvim): focus-aware cursor line via per-window highlight namespacesThomas Vanbesien2026-05-191-0/+179
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.