about summary refs log tree commit diff stats
path: root/pkgs/by-name/vi/vimExtraPlugins/plugins/default.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-29 12:23:34 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-29 12:23:34 +0100
commit652b9bc60063149ac2ab456eef50b558575cf0bb (patch)
tree4837d3cb38e7a9756c2dd2f4f3050917ea0e6403 /pkgs/by-name/vi/vimExtraPlugins/plugins/default.nix
parentfix(modules/nvim/plgs/telescope/extensions/bibtex): Disable (diff)
downloadnixos-config-652b9bc60063149ac2ab456eef50b558575cf0bb.zip
refactor(pkgs/vimExtraPlugins): Remove
I want to use nixpgks' list.
Diffstat (limited to 'pkgs/by-name/vi/vimExtraPlugins/plugins/default.nix')
-rw-r--r--pkgs/by-name/vi/vimExtraPlugins/plugins/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/by-name/vi/vimExtraPlugins/plugins/default.nix b/pkgs/by-name/vi/vimExtraPlugins/plugins/default.nix
deleted file mode 100644
index 59c08c5e..00000000
--- a/pkgs/by-name/vi/vimExtraPlugins/plugins/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{
-  lib,
-  buildVimPlugin,
-  fetchurl,
-  fetchgit,
-}: {
-  /*
-  Generated from: lmburns/lf.nvim
-  */
-  lf-nvim = buildVimPlugin {
-    pname = "lf-nvim";
-    version = "2023-10-03";
-    src = fetchurl {
-      url = "https://github.com/lmburns/lf.nvim/archive/69ab1efcffee6928bf68ac9bd0c016464d9b2c8b.tar.gz";
-      sha256 = "1nwf90bnzqhlgs007gg6xpx0vf4r1d19586nld78ipi1ch7nz4px";
-    };
-    meta = with lib; {
-      description = "Lf file manager for Neovim (in Lua)";
-      homepage = "https://github.com/lmburns/lf.nvim";
-      license = with licenses; [mit];
-    };
-  };
-  /*
-  Generated from: nvim-telescope/telescope-bibtex.nvim
-  */
-  telescope-bibtex-nvim = buildVimPlugin {
-    pname = "telescope-bibtex-nvim";
-    version = "2024-03-28";
-    src = fetchurl {
-      url = "https://github.com/nvim-telescope/telescope-bibtex.nvim/archive/289a6f86ebec06e8ae1590533b732b9981d84900.tar.gz";
-      sha256 = "1sd6p8cvv3dckgrhc7grlyfcibjxhxbfyh0w7p5m4mdcazhy1kqs";
-    };
-    meta = with lib; {
-      description = "A telescope.nvim extension to search and paste bibtex entries into your TeX files.";
-      homepage = "https://github.com/nvim-telescope/telescope-bibtex.nvim";
-      license = with licenses; [mit];
-    };
-  };
-}