Closed Zikoel closed 3 months ago
I found the way to correct the problem: disable the extra from the LazyExtra
interface. But i'm not sure if I understand well what happen. At this point I understand that an extra is not equivalent to a plugin, so it cannot be disabled as a plugin ?
No, it can't. An Extra is just a Lua module that gets toggled on/off and contains different plugin specs. When the edgy
Extra is enabled then the plugin specs in this file are all in effect. You can see that the other plugin specs depend on edgy
being enabled. (require("edgy")
in Telescope and Bufferline specs).
So, the correct way to disable an Extra is the way you enabled it, through the LazyExtras
UI.
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.10.1
Operating system/version
Linux Mint 20.2
Describe the bug
After added the extra "folke/edgy.nvim" I choose to disable it, after that telescope stopping open buffer reporting this error:
I have a very standard LazyVim configuration, I only have switch to
catpuccin
theme, so my customized conf is empty right now.Steps To Reproduce
Expected Behavior
I expect to not see the error and open the buffer as usual.
Repro