From 6711f75a0c9e22f0f63700596fa097bf9079fb00 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 25 Apr 2024 11:07:59 -0400 Subject: [PATCH] base16-nvim: Downgrade from 2024-04-18 to 2024-02-17 This fixes an issue where syntax highlighting was fixed upstream, which broke my workflow since I was using the changing colors of the plugin to determine when the LSP was loaded in. I also liked how it syntax highlighted valid identifiers a different color than invalid ones. See: https://github.com/RRethy/base16-nvim/pull/96 --- home/neovim.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/home/neovim.nix b/home/neovim.nix index 66ff06e1..b12506b0 100644 --- a/home/neovim.nix +++ b/home/neovim.nix @@ -2,6 +2,18 @@ let inherit (config.lib.stylix.scheme) slug; + + base16-nvim = pkgs.vimUtils.buildVimPlugin { + pname = "base16-nvim"; + version = "2024-02-17"; + + src = pkgs.fetchFromGitHub { + owner = "RRethy"; + repo = "base16-nvim"; + rev = "b3e9ec6a82c05b562cd71f40fe8964438a9ba64a"; + sha256 = "1qb8g6q8vwq99030nqw719xgrizbqcnmj4n25fqakjq8pbclwh4p"; + }; + }; in { programs.bat.enable = true;