Fix configuration issues #256
2 changed files with 5 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
flake.overlays.nixvim = inputs.nixvim.overlays.default;
|
||||
|
||||
perSystem =
|
||||
{ system, ... }:
|
||||
{ lib, system, ... }:
|
||||
let
|
||||
nixvimLib = inputs.nixvim.lib.${system};
|
||||
nixvim = inputs.nixvim.legacyPackages.${system};
|
||||
|
@ -12,7 +12,10 @@
|
|||
pkgs = inputs.unstable.legacyPackages.${system};
|
||||
module = {
|
||||
imports = [ ../nvim/standalone.nix ];
|
||||
config = extraConfig;
|
||||
config = lib.mkMerge [
|
||||
{ performance.combinePlugins.enable = true; }
|
||||
extraConfig
|
||||
];
|
||||
};
|
||||
};
|
||||
moduleDev = nvimModule { };
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
# Enable local configuration :h 'exrc'
|
||||
exrc = true; # safe since nvim 0.9
|
||||
};
|
||||
performance.combinePlugins.enable = true;
|
||||
extraPlugins =
|
||||
let
|
||||
plugins = pkgs.vimPlugins;
|
||||
|
|
Loading…
Reference in a new issue