fix: pin nvim at 11.1
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-06-04 20:01:06 -04:00
parent 412a8f606f
commit 1426a2b35f

View file

@ -19,6 +19,17 @@ final: prev: {
inherit src;
});
# FIXME: breaking changes with LspStart in nivm-lspconfig
neovim-unwrapped = prev.neovim-unwrapped.overrideAttrs (o: rec {
version = "0.11.1";
src = final.fetchFromGitHub {
owner = "neovim";
repo = "neovim";
tag = "v${version}";
hash = "sha256-kJvKyNjpqIKa5aBi62jHTCb1KxQ4YgYtBh/aNYZSeO8=";
};
});
# normal electron has a lot of cache misses for me
electron = final.electron-bin;
}