fix(reloader): remove extra trailing separator

This commit is contained in:
Tsakiris Tryfon 2022-12-26 20:34:50 +02:00
commit a866860787

View file

@ -19,7 +19,7 @@ function M.enable()
end end
if type(Config.spec) == "string" then if type(Config.spec) == "string" then
M.timer = vim.loop.new_timer() M.timer = vim.loop.new_timer()
M.root = vim.fn.stdpath("config") .. "/lua/" M.root = vim.fn.stdpath("config") .. "/lua"
M.check(true) M.check(true)
M.timer:start(2000, 2000, M.check) M.timer:start(2000, 2000, M.check)
end end