-
I'm still trying to figure out how to use
This seems to be somewhat working as I was able to do
So, what I'm wondering is if my approach is wrong or if there is a better way to do what I'm wanting or if this is a bug? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The issue is that use {
'goolord/alpha-nvim',
requires = {{ "kyazdani42/nvim-web-devicons" }},
config = function() require('vendion.config.alpha-nvim') end,
} If you are interested in where the |
Beta Was this translation helpful? Give feedback.
The issue is that
config
is expecting a function but is given what ever is returned from the lua modules that you are requiring. This is simply fixed by wrapping the require call in a function.If you are interested in where the
config
key is handled you can find that here