aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/lua/config/keymaps.lua
Commit message (Collapse)AuthorAgeFilesLines
* chore: remove redundant Space-to-Nop mappingLibravatar sommerfeld44 hours1-2/+0
| | | | Has no effect when mapleader is already set to Space.
* fix: use doas instead of sudo in DoasWrite commandLibravatar sommerfeld44 hours1-6/+6
| | | | | | System uses doas for privilege escalation. Renamed SudoWrite → DoasWrite and switched from sudo -p '' -S to doas -S with newline-terminated password input.
* refactor: move core config from after/plugin/ and cfg/ to lua/config/Libravatar sommerfeld44 hours1-0/+156
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.