From 9dd57f8a54070025adda42aeb6baa19f0b28a099 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Sat, 25 Nov 2023 22:12:47 -0500 Subject: [PATCH] feat(nvim): switch to nixpkgs indent-blankline --- common/home/neovim/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/common/home/neovim/default.nix b/common/home/neovim/default.nix index 2b45337..3c49487 100644 --- a/common/home/neovim/default.nix +++ b/common/home/neovim/default.nix @@ -151,13 +151,6 @@ in { version = hypr-src.rev; generate = true; }; - - indent-blankline = plugin (pkgs.fetchFromGitHub { - owner = "lukas-reineke"; - repo = "indent-blankline.nvim"; - rev = "046e2cf04e08ece927bacbfb87c5b35c0b636546"; - hash = "sha256-bhoep8aTYje5K/dZ/XmpwBPn4PBEMPrmw33QJdfFe6M="; - }); in with pkgs.vimPlugins; [ # Coc configured @@ -231,7 +224,7 @@ in { config = fileContents ./plugins/treesitter.vim; } { - plugin = indent-blankline; + plugin = indent-blankline-nvim; type = "lua"; config = fileContents ./plugins/indent.lua; }