diff options
| author | Mike Vink <mike@pionative.com> | 2024-06-09 12:14:20 +0200 |
|---|---|---|
| committer | Mike Vink <mike@pionative.com> | 2024-06-09 12:14:44 +0200 |
| commit | 5013daa0e8b7e2db35d30f3c73b552b4f96b58c4 (patch) | |
| tree | 6fc6d2a6b4090964619e29e6948aea0e8b457d5e /overlays | |
| parent | a0d36ed6a666c14c0d92ce2732e23289771778f4 (diff) | |
fzf-tail
Diffstat (limited to 'overlays')
| -rw-r--r-- | overlays/fzf.nix | 12 | ||||
| -rw-r--r-- | overlays/treesitter.nix | 19 |
2 files changed, 12 insertions, 19 deletions
diff --git a/overlays/fzf.nix b/overlays/fzf.nix new file mode 100644 index 0000000..80b6f07 --- /dev/null +++ b/overlays/fzf.nix @@ -0,0 +1,12 @@ +{pkgs, lib, ...}: with pkgs; (final: prev: { + fzf = (prev.fzf.overrideAttrs (oldAttrs: rec { + version = "0.53.0"; + src = fetchFromGitHub { + owner = "junegunn"; + repo = "fzf"; + rev = version; + hash = "sha256-2g1ouyXTo4EoCub+6ngYPy+OUFoZhXbVT3FI7r5Y7Ws="; + }; + vendorHash = "sha256-Kd/bYzakx9c/bF42LYyE1t8JCUqBsJQFtczrFocx/Ps="; + })); +}) diff --git a/overlays/treesitter.nix b/overlays/treesitter.nix deleted file mode 100644 index 35b75a0..0000000 --- a/overlays/treesitter.nix +++ /dev/null @@ -1,19 +0,0 @@ -{...}: (final: prev: { - tree-sitter = mvinkioPkgs.tree-sitter; - vimPlugins = - prev.vimPlugins - // { - nvim-treesitter = mvinkioPkgs.vimPlugins.nvim-treesitter.overrideAttrs (old: { - version = "2022-10-28"; - passthru.withPlugins = grammarFn: - final.vimPlugins.nvim-treesitter.overrideAttrs (_: { - postPatch = let - grammars = mvinkioPkgs.tree-sitter.withPlugins grammarFn; - in '' - rm -r parser - ln -s ${grammars} parser - ''; - }); - }); - }; -}) |
