mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
realized I forgot the trailing comma
This commit is contained in:
parent
c7559279d2
commit
e19226833d
2 changed files with 2 additions and 2 deletions
|
@ -439,7 +439,7 @@ return {
|
||||||
-- for niche situations where you need to inject earlier in the load cycle
|
-- for niche situations where you need to inject earlier in the load cycle
|
||||||
-- such as adding things that must be sourced before VIMRUNTIME
|
-- such as adding things that must be sourced before VIMRUNTIME
|
||||||
---@type fun(DEFAULT: string[], ME: string): string[]
|
---@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 = {
|
-- DEFAULT = {
|
||||||
-- vim.fn.stdpath("config"),
|
-- vim.fn.stdpath("config"),
|
||||||
-- vim.fn.stdpath("data") .. "/site",
|
-- vim.fn.stdpath("data") .. "/site",
|
||||||
|
|
|
@ -149,7 +149,7 @@ M.defaults = {
|
||||||
-- for niche situations where you need to inject earlier in the load cycle
|
-- for niche situations where you need to inject earlier in the load cycle
|
||||||
-- such as adding things that must be sourced before VIMRUNTIME
|
-- such as adding things that must be sourced before VIMRUNTIME
|
||||||
---@type fun(DEFAULT: string[], ME: string): string[]
|
---@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 = {
|
-- DEFAULT = {
|
||||||
-- vim.fn.stdpath("config"),
|
-- vim.fn.stdpath("config"),
|
||||||
-- vim.fn.stdpath("data") .. "/site",
|
-- vim.fn.stdpath("data") .. "/site",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue