From a33deebdb994051b6eb8da8984ee32f74cad5abf Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sat, 9 Mar 2024 02:11:57 +0300 Subject: [PATCH] Nvim : Fix rc. --- module/common/Nvim.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/common/Nvim.nix b/module/common/Nvim.nix index f97dff97..fae7a54f 100644 --- a/module/common/Nvim.nix +++ b/module/common/Nvim.nix @@ -1,4 +1,4 @@ -{ inputs, util, ... }: let +{ inputs, ... }: let nvimRc = { cfgPath, runtimes, cfgs }: let runtimeRc = builtins.foldl' (acc: r: acc + "set runtimepath+=${r}\n" @@ -14,7 +14,7 @@ in { viAlias = true; vimAlias = true; configure = { - customRC = util.nvimRc { + customRC = nvimRc { cfgPath = "/etc/nvim"; runtimes = [ "~/.cache/nvim"