Files
nvim-config/lua/utils/reload.lua
th3r00t 1c21e3552b Iniital upload
Removing from my nixos config to add congruency with all nvim installs
2025-08-29 00:40:20 -04:00

12 lines
248 B
Lua

for name,_ in pairs(package.loaded) do
if name:match("^t3")
or name:match("^options")
or name:match("^overrides")
or name:match("^plugins")
or name:match("keymaps")
or name:match("^reload")
then
package.loaded[name] = nil
end
end