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 ''; + }; }; }; };