From b86b3cb6aa3f69248be0134c0f5f8e33724cc532 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 3 Jul 2025 05:36:31 +0000 Subject: [PATCH] Deploy PR #985 preview --- docs-preview-985/index.xhtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-preview-985/index.xhtml b/docs-preview-985/index.xhtml index a5a31ef8..47f82ec1 100644 --- a/docs-preview-985/index.xhtml +++ b/docs-preview-985/index.xhtml @@ -808,7 +808,7 @@ manner.

{
   # flake.nix. For the sake of the argument, we will assume that the Neovim lua
   # configuration is in a nvim/ directory relative to flake.nix.
   vim = {
-    additionalRuntimeDirectories = [
+    additionalRuntimePaths = [
       # This will be added to Neovim's runtime paths. Conceptually, this behaves
       # very similarly to ~/.config/nvim but you may not place a top-level
       # init.lua to be able to require it directly.
@@ -821,7 +821,7 @@ realised after your flake gets copied to the Nix store, to Neovim’s runtime
 directory. You may now create a lua/myconfig directory within this nvim
 directory, and call it with vim.luaConfigRC.

{pkgs, ...}: {
   vim = {
-    additionalRuntimeDirectories = [
+    additionalRuntimePaths = [
       # You can list more than one file here.
       ./nvim-custom-1