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() '';...
Thanks @traxys. Yes, I agree with your view that nixvim shouldn't add layers of custom logic on top of the native plugins, that can get out of hand quickly. You're...
@traxys, worth mentioning that I am using nixvim as a home-manager module. After I upgraded `inputs.nixpkgs.url` to the `nixpkgs-unstable` branch (as opposed to `23.11`), the nixvim's url to `main` (as...
> > It looks likee `gcc` was removed from being automatically injected in [this commit](https://github.com/nix-community/nixvim/commit/2785267b1b1441148f6f3195e6b68a98962c606b), which isn't part of the branch I was working with, `nixos-23.11`. > > Indeed, this...
@savil Thank you, that worked! Just for posterity, it turns out there are 2 ways to solve the problem: - declare `stdenv.cc.cc.lib` into `devbox.json` - if you're a `home-manager` user,...
I'm not sure if the below is a devbox (latest version, 0.8.1) bug or not. But basically I found using a specific version of `gcc` to be more reliable than...
@savil, thanks for your suggestion. I ended up having to temporarily create a venv with `asdf` due to some problems with the venv cretead by `devbox`. Let me explain. The...