AI
AI
> Anything on this? I'm getting this error right now without even configuring plenary, i'm just using the default setup options. > > commit pulled by lazy: [0ada6c6](https://github.com/kdheepak/lazygit.nvim/commit/0ada6c6e7e138df92f5009b6952f4ac41248305a) https://github.com/kdheepak/lazygit.nvim/assets/30378044/b70c4860-efcd-4efa-bea0-fee1f1cc7ac7 It...
I could also supply this in the `nixvim` config: ```nix extraPlugins = [ pkgs.my-overlays.my-telescope-extension ]; extraConfigLua = '' require("my-telescope-extension").setup() ''; ``` because in my `flake.nix` I add `my-overlays` on top...
Just to show what I expected to be able to do inside a local dotfiles repo. I'm only including the relevant parts. ```nix # flake.nix { inputs = { #...
In the end what I've done is create a plugin with `pkgs.vimUtils.buildVimPlugin`, then pass it to nixvim's config in: ```nix extraPlugins = [ my-telescope-extension ]; extraConfigLua = '' require("my-telescope-extension").setup() '';...