fix(reloader): remove extra trailing separator (#180)

This commit is contained in:
Tsakiris Tryfon 2022-12-26 20:42:42 +02:00 committed by GitHub
parent 511524ebff
commit c4d924acee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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