-- -- 99-local.lua -- -- * Sources `local.lua` from the config directory if it exists (machine-local overrides, untracked). -- Numbered 99 so it loads after every other plugin file — overrides only stick if they run last. -- local local_config = vim.fs.joinpath(vim.fn.stdpath("config"), "local.lua") if vim.uv.fs_stat(local_config) then dofile(local_config) end