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
I have searched the exsiting issues of the plugin I have a problem with
Neovim version (nvim -v)
0.9.0-dev-484+gb5edea655
Operating system/version
arch linux and mac os
Describe the bug
I want to lazy load plugin "lightblub" on events "InsertEnter" and "CursorMoved".
But while I first open the neovim without install any plugins, an error message occured 'error detected while processing CursorMoved Autocommands for "*": Plugin nvim-lightbulb is not installed'
I think this is caused by loading plugin without detecting whether it is installed.
Steps To Reproduce
nvim -u repo.lua, repo.lua will write below
Expected Behavior
Install plugin firstly and then loaded it if the plugin is not installed.
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",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
-- add any other plugins here
{
"kosayoda/nvim-lightbulb",
config=true,
event= {"InsertEnter", "CursorMoved"}
}
}
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:
Did you check docs and existing issues?
Neovim version (nvim -v)
0.9.0-dev-484+gb5edea655
Operating system/version
arch linux and mac os
Describe the bug
I want to lazy load plugin "lightblub" on events "InsertEnter" and "CursorMoved".
But while I first open the neovim without install any plugins, an error message occured 'error detected while processing CursorMoved Autocommands for "*": Plugin nvim-lightbulb is not installed'
I think this is caused by loading plugin without detecting whether it is installed.
Steps To Reproduce
Expected Behavior
Install plugin firstly and then loaded it if the plugin is not installed.
Repro
The text was updated successfully, but these errors were encountered: