From e19226833ddfc1d1aa3e4c191f08da24429186d4 Mon Sep 17 00:00:00 2001 From: BirdeeHub Date: Sat, 20 Jan 2024 15:02:45 -0800 Subject: [PATCH] realized I forgot the trailing comma --- README.md | 2 +- lua/lazy/core/config.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ac5b4c..0c66b7d 100644 --- a/README.md +++ b/README.md @@ -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", diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 459eafe..1ee2e29 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -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",