From f8ecab0bb16e8ecaee8b0afdc14e45ab64c13020 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Mon, 20 May 2024 14:31:32 -0600 Subject: [PATCH] overlays: downgrade neovim to 0.9.5 It seems colors are totally bonkers in 0.10.0 --- overlays/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/overlays/default.nix b/overlays/default.nix index d48d39b..aedefd3 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -16,6 +16,17 @@ in doCheck = todo "libressl tests disabled when building with musl" false; }); }) + (_: super: { + neovim-unwrapped = super.neovim-unwrapped.overrideAttrs (_: rec { + version = "0.9.5"; + src = super.fetchFromGitHub { + owner = "neovim"; + repo = "neovim"; + rev = "v${version}"; + hash = "sha256-CcaBqA0yFCffNPmXOJTo8c9v1jrEBiqAl8CG5Dj5YxE="; + }; + }); + }) ] ++ (if isUnstable then [