realized I forgot the trailing comma

This commit is contained in:
BirdeeHub 2024-01-20 15:02:45 -08:00
commit e19226833d
2 changed files with 2 additions and 2 deletions

View file

@ -439,7 +439,7 @@ 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): string[]
override_base_rtp = function(DEFAULT, ME) return DEFAULT end
override_base_rtp = function(DEFAULT, ME) return DEFAULT end,
-- DEFAULT = {
-- vim.fn.stdpath("config"),
-- vim.fn.stdpath("data") .. "/site",

View file

@ -149,7 +149,7 @@ M.defaults = {
-- 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): string[]
override_base_rtp = function(DEFAULT, ME) return DEFAULT end
override_base_rtp = function(DEFAULT, ME) return DEFAULT end,
-- DEFAULT = {
-- vim.fn.stdpath("config"),
-- vim.fn.stdpath("data") .. "/site",