You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the assert failure you'll see, you can run :lua=vim.g.my_list to see that the list is actually there, but the file wasn't sourced until after the config() function was called.
Expected Behavior
Files in plugins' plugin/ dirs should be sourced before the config() function from the plugin spec is called. This lets a user override things that a plugin sets up.
Repro
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
-- add any other plugins here
{
dir=vim.fn.fnamemodify("./test_plugin", ":p"),
config=function()
assert(vim.g.my_list)
end
}
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
The text was updated successfully, but these errors were encountered:
This is indeed due to a recent change where we now run config() before /plugin, because not doing it like that broke some plugins.
I do however agree with you that it makes more sense to load a plugin first and only then call setup, so I'll change that again. Your use-case is a great example.
I was simultaneously debugging and typing up my own report about this when I refreshed github and found that this other issue was filed and already fixed.
I do however agree with you that it makes more sense to load a plugin first and only then call setup
This is my opinion as well. Though the docs don't state this explicitly, it seems intuitive that plugin.config() should be allowed to depend on all the APIs (lua and vimscript) provided by the plugin.
Thanks all! 🏆
flrgh
added a commit
to flrgh/.dotfiles
that referenced
this issue
Jan 5, 2023
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.9.0-dev-608+geb702273c
Operating system/version
MacOS 13.1
Describe the bug
Not sure exactly when, but recently my config function for vim-dispatch stopped working:
The config function modifies a list that the main
vim-dispatch
plugin file sets up. This was working until a recent update. The error is:Steps To Reproduce
Using the attached minimal init.lua, do the following:
After the assert failure you'll see, you can run
:lua=vim.g.my_list
to see that the list is actually there, but the file wasn't sourced until after theconfig()
function was called.Expected Behavior
Files in plugins'
plugin/
dirs should be sourced before theconfig()
function from the plugin spec is called. This lets a user override things that a plugin sets up.Repro
The text was updated successfully, but these errors were encountered: