aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/lua/custom/plugins/search.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor: flatten custom/plugins/ to plugins/Libravatar sommerfeld34 hours1-183/+0
| | | | | | 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.
* fix: disambiguate duplicate localleader-gc keymapsLibravatar sommerfeld34 hours1-0/+2
| | | | | | Both git_bcommits and git_bcommits_range were bound to <localleader>gc, with the second silently shadowing the first. Split by mode: normal for buffer commits, visual for range commits.
* fix: correct undefined FzfLua global to lowercase fzfluaLibravatar sommerfeld34 hours1-1/+1
| | | | | | FzfLua.actions.file_split references undefined global. The local variable is named fzflua (lowercase). This caused a runtime error when pressing ctrl-x in any fzf-lua file picker.
* refactor(nvim): rename telescope.lua to search.luaLibravatar sommerfeld34 hours1-0/+181
The file contains fzf-lua configuration, not telescope. Name now reflects actual content.