How to make it work when using lazy?
Closed this issue · 1 comments
thepenguinthatwants commented
I tried to install by
{
's1n7ax/nvim-window-picker',
setup = function()
require('window-picker').setup()
end,
},
It does install, but when running
lua require('nvim-window').pick()
I get error saiying nvim-window module not found.
s1n7ax commented
When you are lazy loading, you need to tell lazy.nvim
when to load the plugin. You could add even = 'VeryLazy'
for example to load the plugin at startup.