-
-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to use with Lazy.nvim starter #305
Comments
I have not seen this so far. What operation triggered this issue? |
It seems to working with this init.lua but I am not sure how to check properly. Here is my config with navigator activated. https://github.com/aleyrizvi/nvim-config the plugin is in https://github.com/aleyrizvi/nvim-config/blob/main/lua/plugins/navigator.lua |
Looks like you have mason installed/configed |
I got this error message too (I'm also using LazyVim). If you follow the instructions in the error message, it goes away, though that also partly disables I can only assume that Here's an example config to 'fix' the error: return
{
"folke/noice.nvim",
event = "VeryLazy",
opts = {
lsp = {
hover = {
enabled = false,
},
signature = {
enabled = false,
},
},
},
dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
"rcarriga/nvim-notify",
},
} |
Found it:
I actually get a second error (see screenshot), hence the two settings in the example above, but I can't see that |
look like hover&signature is not disabled in noice config. |
Hi,
I am very new with neovim and I am having the following error after installing
navigator.lua
Can you please tell me what needs to be done and how to solve it?
The text was updated successfully, but these errors were encountered: