From 4d00f500207df2b9798b30ac4df8e11e95b05d42 Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Wed, 23 Apr 2025 20:30:41 +0200 Subject: [PATCH] trying fixes for cmp --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 3a9b1c2..b42c0d8 100644 --- a/flake.nix +++ b/flake.nix @@ -59,7 +59,8 @@ ]; programs.neovim = { enable = true; - packages.myTetspkg = { + configure = { + packages.myTetspkg = { start = [ (pkgs.vimUtils.buildVimPlugin { pname = "nvim-cmp"; @@ -68,7 +69,7 @@ }) ]; }; - configure.customRC = '' + customRC = '' set runtimepath+=${inputs.plugin-dracula} set runtimepath+=${inputs.plugin-lsp} set runtimepath+=${inputs.plugin-cmp} @@ -165,6 +166,7 @@ } EOF ''; + }; }; }; };