File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -309,6 +309,8 @@ return {
309
309
reset_packpath = true , -- reset the package path to improve startup time
310
310
rtp = {
311
311
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
312
314
--- @type string[] list any plugins you want to disable here
313
315
disabled_plugins = {
314
316
-- "gzip",
Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ M.defaults = {
69
69
reset_packpath = true , -- reset the package path to improve startup time
70
70
rtp = {
71
71
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
72
74
--- @type string[] list any plugins you want to disable here
73
75
disabled_plugins = {
74
76
-- "gzip",
@@ -142,6 +144,9 @@ function M.setup(spec, opts)
142
144
vim .fn .stdpath (" config" ) .. " /after" ,
143
145
}
144
146
end
147
+ for _ , path in ipairs (M .options .performance .rtp .paths ) do
148
+ vim .opt .rtp :append (path )
149
+ end
145
150
vim .opt .rtp :append (M .options .readme .root )
146
151
147
152
-- disable plugin loading since we do all of that ourselves
You can’t perform that action at this time.
0 commit comments