mirror of https://github.com/folke/lazy.nvim.git
fix(reloader): remove extra trailing separator (#180)
This commit is contained in:
parent
511524ebff
commit
c4d924acee
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue