Skip to content

Commit 876f7bd

Browse files
committed
feat(loader): allow to add extra paths to rtp reset. Fixes #64
1 parent a345649 commit 876f7bd

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,8 @@ return {
309309
reset_packpath = true, -- reset the package path to improve startup time
310310
rtp = {
311311
reset = true, -- reset the runtime path to $VIMRUNTIME and your config directory
312+
---@type string[]
313+
paths = {}, -- add any custom paths here that you want to indluce in the rtp
312314
---@type string[] list any plugins you want to disable here
313315
disabled_plugins = {
314316
-- "gzip",

lua/lazy/core/config.lua

+5
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ M.defaults = {
6969
reset_packpath = true, -- reset the package path to improve startup time
7070
rtp = {
7171
reset = true, -- reset the runtime path to $VIMRUNTIME and your config directory
72+
---@type string[]
73+
paths = {}, -- add any custom paths here that you want to indluce in the rtp
7274
---@type string[] list any plugins you want to disable here
7375
disabled_plugins = {
7476
-- "gzip",
@@ -142,6 +144,9 @@ function M.setup(spec, opts)
142144
vim.fn.stdpath("config") .. "/after",
143145
}
144146
end
147+
for _, path in ipairs(M.options.performance.rtp.paths) do
148+
vim.opt.rtp:append(path)
149+
end
145150
vim.opt.rtp:append(M.options.readme.root)
146151

147152
-- disable plugin loading since we do all of that ourselves

0 commit comments

Comments
 (0)