| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
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.
|
| |
|
|
|
| |
Use _G.P instead of implicit global function declaration to
make the intent clear and satisfy linters.
|
| |
|
|
|
| |
dofile() bypasses vim.loader cache. require() benefits from the
byte-compiled module cache enabled on line 1.
|
| |
|
|
| |
Already called in lsp.lua config function alongside tblgen_lsp_server.
|
| | |
|
| | |
|
| | |
|
| |
|