From b86b3cb6aa3f69248be0134c0f5f8e33724cc532 Mon Sep 17 00:00:00 2001
From: GitHub Actions
{
# 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