From 4675a023e85fb0c188cbf1916decff43ab95a692 Mon Sep 17 00:00:00 2001 From: triethyl Date: Tue, 15 Jul 2025 14:47:28 -0400 Subject: working on custom neovim --- pkgs/custom-neovim/git-plugins.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/custom-neovim/git-plugins.nix (limited to 'pkgs/custom-neovim/git-plugins.nix') diff --git a/pkgs/custom-neovim/git-plugins.nix b/pkgs/custom-neovim/git-plugins.nix new file mode 100644 index 0000000..6e26e40 --- /dev/null +++ b/pkgs/custom-neovim/git-plugins.nix @@ -0,0 +1,20 @@ +{pkgs, ...}: { + plenary-nvim-git = pkgs.vimPlugins.plenary-nvim.overrideAttrs (old: { + version = "git"; + src = pkgs.fetchFromGitHub { + owner = "emmanueltouzery"; + repo = "plenary.nvim"; + rev = "7750bc895a1f06aa7a940f5aea43671a74143be0"; + sha256 = "sha256-9Un7ekhBxcnmFE1xjCCFTZ7eqIbmXvQexpnhduAg4M0="; + }; + }); # go back to regular plenary when this commit is merged: https://github.com/nvim-lua/plenary.nvim/pull/649 + which-key-nvim-git = pkgs.vimPlugins.which-key-nvim.overrideAttrs (old: { + version = "git"; + src = pkgs.fetchFromGitHub { + owner = "cameronr"; + repo = "which-key.nvim"; + rev = "ab1a3b0d3005a95507ba6c18b96531d430370885"; + sha256 = "sha256-Zbs+Xd6kGfR+s/f6xhxXBdKJA2N4WqcJDPWVkGaM7S0="; + }; + }); # go back to regular which-key when this commit is merged: https://github.com/folke/which-key.nvim/pull/974 +} -- cgit v1.2.3