Compare commits

...

1 commit

Author SHA1 Message Date
c4e6beb50d
fix: disable combinePlugins due to upstream issue
All checks were successful
/ check (push) Successful in 41s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 40s
/ build-vm (push) Successful in 18s
/ report-size (push) Successful in 1m6s
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
2025-04-09 17:42:22 +02:00

View file

@ -23,7 +23,8 @@
inherit system; inherit system;
modules = [ modules = [
self.nixvimModules.standalone self.nixvimModules.standalone
{ performance.combinePlugins.enable = true; } # FIXME: borked due to https://github.com/nix-community/nixvim/issues/3140
# { performance.combinePlugins.enable = true; }
extraConfig extraConfig
]; ];
}; };