improved readability of option by removing extra passthrough items

This commit is contained in:
BirdeeHub 2024-01-16 16:56:56 -08:00
commit 20061c3d06
2 changed files with 10 additions and 11 deletions

View file

@ -438,14 +438,14 @@ return {
},
-- for niche situations where you need to inject earlier in the load cycle
-- such as adding things that must be sourced before VIMRUNTIME
---@type fun(DEFAULT: string[], ME: string, VIMRUNTIME: string, NVIM_LIB: string): string[]
override_base_rtp = function(DEFAULT, ME, VIMRUNTIME, NVIM_LIB) return DEFAULT end
---@type fun(DEFAULT: string[], ME: string): string[]
override_base_rtp = function(DEFAULT, ME) return DEFAULT end
-- DEFAULT = {
-- vim.fn.stdpath("config"),
-- vim.fn.stdpath("data") .. "/site",
-- ME,
-- VIMRUNTIME,
-- NVIM_LIB,
-- vim.env.VIMRUNTIME,
-- vim.fn.fnamemodify(vim.v.progpath, ":p:h:h") .. "/lib/nvim",
-- vim.fn.stdpath("config") .. "/after",
-- }
},