From 1f2163d2a814789677b51e961afc788ad05ca5e4 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 26 Sep 2025 21:08:40 +0300 Subject: [PATCH] docs: remove dupliate page Signed-off-by: NotAShelf Change-Id: I6a6a6964ab066fe88fe52b53b619971a27f23a5b --- docs/manual.nix | 4 +--- .../custom-plugins/custom-package.md | 22 ------------------- 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 docs/manual/configuring/custom-plugins/custom-package.md diff --git a/docs/manual.nix b/docs/manual.nix index bf222204..8b80f2e4 100644 --- a/docs/manual.nix +++ b/docs/manual.nix @@ -4,6 +4,7 @@ stdenvNoCC, runCommandNoCCLocal, optionsJSON, + release, } @ args: let manual-release = args.release or "unstable"; in @@ -28,9 +29,6 @@ in substituteInPlace ./manual/index.md \ --subst-var-by NVF_VERSION ${manual-release} - substituteInPlace ./manual/hacking/additional-plugins.md \ - --subst-var-by NVF_REPO "https://github.com/notashelf/nvf/blob/${manual-release}" - # Generate the final manual from a set of parameters. This uses # feel-co/ndg to render the web manual. ndg html \ diff --git a/docs/manual/configuring/custom-plugins/custom-package.md b/docs/manual/configuring/custom-plugins/custom-package.md deleted file mode 100644 index 3e9e324a..00000000 --- a/docs/manual/configuring/custom-plugins/custom-package.md +++ /dev/null @@ -1,22 +0,0 @@ -# Custom Neovim Package {#ch-custom-package} - -As of v0.5, you may now specify the Neovim package that will be wrapped with -your configuration. This is done with the [](#opt-vim.package) option. - -```nix -{inputs, pkgs, ...}: { - # using the neovim-nightly overlay - vim.package = inputs.neovim-overlay.packages.${pkgs.stdenv.system}.neovim; -} -``` - -The neovim-nightly-overlay always exposes an unwrapped package. If using a -different source, you are highly recommended to get an "unwrapped" version of -the neovim package, similar to `neovim-unwrapped` in nixpkgs. - -```nix -{ pkgs, ...}: { - # using the neovim-nightly overlay - vim.package = pkgs.neovim-unwrapped; -} -```