Skip to content

Commit 486ae77

Browse files
committed
fix: disable combinePlugins due to upstream issue
It is experimental (and thus expected to break). It was working fine but now I ran into nix-community/nixvim#3140
1 parent 7f4750c commit 486ae77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flake-modules/nixvim-modules.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
inherit system;
2424
modules = [
2525
self.nixvimModules.standalone
26-
{ performance.combinePlugins.enable = true; }
26+
# FIXME: borked due to https://github.com/nix-community/nixvim/issues/3140
27+
# { performance.combinePlugins.enable = true; }
2728
extraConfig
2829
];
2930
};

0 commit comments

Comments
 (0)