File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,13 @@ function M.startup()
49
49
50
50
local rtp = vim .opt .rtp :get ()
51
51
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
+
52
59
-- load plugins from rtp, excluding after
53
60
Util .track ({ start = " rtp plugins" })
54
61
for _ , path in ipairs (rtp ) do
Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ function M:reason(reason, opts)
242
242
reason .runtime = reason .runtime :gsub (" .*/([^/]+/plugin/.*)" , " %1" )
243
243
reason .runtime = reason .runtime :gsub (" .*/([^/]+/after/.*)" , " %1" )
244
244
reason .runtime = reason .runtime :gsub (" .*/([^/]+/ftdetect/.*)" , " %1" )
245
+ reason .runtime = reason .runtime :gsub (" .*/(runtime/.*)" , " %1" )
245
246
end
246
247
local time = reason .time and (" " .. math.floor (reason .time / 1e6 * 100 ) / 100 .. " ms" )
247
248
if time and not opts .time_right then
You can’t perform that action at this time.
0 commit comments