feat(nvim): switch to nixpkgs indent-blankline

This commit is contained in:
matt1432 2023-11-25 22:12:47 -05:00
parent e55026a65a
commit 9dd57f8a54

View file

@ -151,13 +151,6 @@ in {
version = hypr-src.rev; version = hypr-src.rev;
generate = true; generate = true;
}; };
indent-blankline = plugin (pkgs.fetchFromGitHub {
owner = "lukas-reineke";
repo = "indent-blankline.nvim";
rev = "046e2cf04e08ece927bacbfb87c5b35c0b636546";
hash = "sha256-bhoep8aTYje5K/dZ/XmpwBPn4PBEMPrmw33QJdfFe6M=";
});
in in
with pkgs.vimPlugins; [ with pkgs.vimPlugins; [
# Coc configured # Coc configured
@ -231,7 +224,7 @@ in {
config = fileContents ./plugins/treesitter.vim; config = fileContents ./plugins/treesitter.vim;
} }
{ {
plugin = indent-blankline; plugin = indent-blankline-nvim;
type = "lua"; type = "lua";
config = fileContents ./plugins/indent.lua; config = fileContents ./plugins/indent.lua;
} }