<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dotfiles/home/.config/nvim/after/plugin, branch master</title>
<subtitle>My linux config and rc files
</subtitle>
<id>https://git.strisemarx.com/dotfiles/atom?h=master</id>
<link rel='self' href='https://git.strisemarx.com/dotfiles/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/'/>
<updated>2026-04-17T09:53:12Z</updated>
<entry>
<title>refactor: move core config from after/plugin/ and cfg/ to lua/config/</title>
<updated>2026-04-17T09:53:12Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2026-04-17T09:53:12Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=d301dadc3fd279b0383eb0d37dc00dfdd17e9f2b'/>
<id>urn:sha1:d301dadc3fd279b0383eb0d37dc00dfdd17e9f2b</id>
<content type='text'>
after/plugin/ runs after ALL plugins with unpredictable ordering. Explicit
require() from init.lua after lazy.setup() is more predictable and standard.

- after/plugin/autocmds.lua → lua/config/autocmds.lua
- after/plugin/mappings.lua → lua/config/keymaps.lua
- cfg/options.lua → config/options.lua
- cfg/utils.lua → config/utils.lua

Creates a consistent lua/config/ namespace for all non-plugin configuration.
</content>
</entry>
<entry>
<title>refactor: consolidate LspAttach handlers into single callback</title>
<updated>2026-04-17T09:53:11Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2026-04-17T09:53:11Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=3e3d394d014dded76e3aac9a615f5efa93dd1c59'/>
<id>urn:sha1:3e3d394d014dded76e3aac9a615f5efa93dd1c59</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>fix: remove stale vim-sneak comment</title>
<updated>2026-04-17T09:53:07Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2026-04-17T09:53:07Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=36e6facf012a7920fe63b28a665b52b7ae854049'/>
<id>urn:sha1:36e6facf012a7920fe63b28a665b52b7ae854049</id>
<content type='text'>
Comment referenced vim-sneak plugin which is not installed. The semicolon
mapping is active and has been since the plugin was removed. Also had a
"to to" typo.
</content>
</entry>
<entry>
<title>style(nvim): replace verbose kickstart comments with concise ones</title>
<updated>2026-04-17T09:53:03Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2026-04-17T09:53:03Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=7670942d3adea6e84649d7608528210a80008cff'/>
<id>urn:sha1:7670942d3adea6e84649d7608528210a80008cff</id>
<content type='text'>
Multi-line tutorial comments explaining CursorHold and inlay hints
are unnecessary for the config author. Replaced with one-liners.
</content>
</entry>
<entry>
<title>fix(nvim): remove incorrect expr flag from terminal escape mapping</title>
<updated>2026-04-17T09:52:59Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2026-04-17T09:52:59Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=0e1ebe25c32be65ffad77b694b31d44f00850881'/>
<id>urn:sha1:0e1ebe25c32be65ffad77b694b31d44f00850881</id>
<content type='text'>
The mapping has a literal rhs string, not an expression. The expr
flag caused the rhs to be evaluated as a vimscript expression.
</content>
</entry>
<entry>
<title>refactor(nvim): remove LSP mappings now default in 0.12</title>
<updated>2026-04-17T09:52:55Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2026-04-17T09:52:55Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=73ec350044e49ddbad203f4959357b4a7b17c15b'/>
<id>urn:sha1:73ec350044e49ddbad203f4959357b4a7b17c15b</id>
<content type='text'>
Remove gra (code_action) and &lt;leader&gt;cl (codelens.run) mappings.
Neovim 0.12 provides these as gra and grx defaults respectively.
Also remove unused nvmap helper function.
</content>
</entry>
<entry>
<title>feat(nvim): enable treesitter foldexpr</title>
<updated>2026-04-17T09:52:54Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2026-04-17T09:52:54Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=3de3acbf676bf390caa447b6fc139ecd76319b5a'/>
<id>urn:sha1:3de3acbf676bf390caa447b6fc139ecd76319b5a</id>
<content type='text'>
Uncomment vim.treesitter.foldexpr() which is well-supported in 0.12.
Folding remains disabled by default (foldenable=false) so this only
takes effect when explicitly enabled per-buffer.
</content>
</entry>
<entry>
<title>Add a lot of changes</title>
<updated>2025-09-11T15:38:11Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2025-09-11T15:38:11Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=aa62e1f27b0cb3d712d6f2b13071cca0f09379be'/>
<id>urn:sha1:aa62e1f27b0cb3d712d6f2b13071cca0f09379be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[nvim] Change diagnostics mappings</title>
<updated>2025-01-31T17:56:07Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2025-01-31T17:35:26Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=84006bade072d8b3c390beddceae7222e0432667'/>
<id>urn:sha1:84006bade072d8b3c390beddceae7222e0432667</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[nvim] Remove tmux navigator</title>
<updated>2025-01-31T17:56:07Z</updated>
<author>
<name>sommerfeld</name>
<email>sommerfeld@sommerfeld.dev</email>
</author>
<published>2025-01-31T17:35:10Z</published>
<link rel='alternate' type='text/html' href='https://git.strisemarx.com/dotfiles/commit/?id=50c107a25b327d626985b28aeb8f9a6bbd571345'/>
<id>urn:sha1:50c107a25b327d626985b28aeb8f9a6bbd571345</id>
<content type='text'>
</content>
</entry>
</feed>
