Skip to content

Commit

Permalink
fix(reloader): remove extra trailing separator (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsakirist committed Dec 26, 2022
1 parent 511524e commit c4d924a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/manage/reloader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function M.enable()
end
if type(Config.spec) == "string" then
M.timer = vim.loop.new_timer()
M.root = vim.fn.stdpath("config") .. "/lua/"
M.root = vim.fn.stdpath("config") .. "/lua"
M.check(true)
M.timer:start(2000, 2000, M.check)
end
Expand Down

0 comments on commit c4d924a

Please sign in to comment.