Skip to content

Commit 2140503

Browse files
committedMay 31, 2024
fix(pretty-fold): deploy workaround for nvim v0.10
* use fork with patch applied until the following issue is resolved: anuvyklack/pretty-fold.nvim#39
1 parent 61e5657 commit 2140503

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎modules/home/neovim/treesitter.nix

+8-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@
3030
nvim-treesitter-textobjects
3131
playground
3232
rainbow-delimiters-nvim
33-
pretty-fold-nvim
33+
(pretty-fold-nvim.overrideAttrs (final: prev: {
34+
src = pkgs.fetchFromGitHub {
35+
owner = "bbjornstad";
36+
repo = "pretty-fold.nvim";
37+
rev = "ce302faec7da79ea8afb5a6eec5096b68ba28cb5";
38+
hash = "sha256-KeRc1Jc6CSW8qeyiJZhbGelxewviL/jPFDxRW1HsfAk=";
39+
};
40+
}))
3441
nvim-autopairs
3542
tabout-nvim
3643
treesj

0 commit comments

Comments
 (0)
Please sign in to comment.