From 486ae7713ee9e5a307f51745ab68cdf56ac1867e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Wed, 9 Apr 2025 17:41:12 +0200 Subject: [PATCH] fix: disable combinePlugins due to upstream issue It is experimental (and thus expected to break). It was working fine but now I ran into https://github.com/nix-community/nixvim/issues/3140 --- flake-modules/nixvim-modules.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake-modules/nixvim-modules.nix b/flake-modules/nixvim-modules.nix index 1f8a395..b40b0dd 100644 --- a/flake-modules/nixvim-modules.nix +++ b/flake-modules/nixvim-modules.nix @@ -23,7 +23,8 @@ inherit system; modules = [ self.nixvimModules.standalone - { performance.combinePlugins.enable = true; } + # FIXME: borked due to https://github.com/nix-community/nixvim/issues/3140 + # { performance.combinePlugins.enable = true; } extraConfig ]; }; -- 2.48.1