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