Skip to content

Commit ffcd0ab

Browse files
committed
fix(loader): source filetype.lua before plugins. Fixes #35
1 parent 9d12cdc commit ffcd0ab

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

lua/lazy/core/loader.lua

+7
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ function M.startup()
4949

5050
local rtp = vim.opt.rtp:get()
5151

52+
Util.track({ start = "filetype" })
53+
local ft = vim.env.VIMRUNTIME .. "/filetype.lua"
54+
Util.try(function()
55+
vim.cmd("silent source " .. ft)
56+
end, "Failed to source `" .. ft .. "`")
57+
Util.track()
58+
5259
-- load plugins from rtp, excluding after
5360
Util.track({ start = "rtp plugins" })
5461
for _, path in ipairs(rtp) do

lua/lazy/view/render.lua

+1
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ function M:reason(reason, opts)
242242
reason.runtime = reason.runtime:gsub(".*/([^/]+/plugin/.*)", "%1")
243243
reason.runtime = reason.runtime:gsub(".*/([^/]+/after/.*)", "%1")
244244
reason.runtime = reason.runtime:gsub(".*/([^/]+/ftdetect/.*)", "%1")
245+
reason.runtime = reason.runtime:gsub(".*/(runtime/.*)", "%1")
245246
end
246247
local time = reason.time and (" " .. math.floor(reason.time / 1e6 * 100) / 100 .. "ms")
247248
if time and not opts.time_right then

0 commit comments

Comments
 (0)