From e1e0674fd953a3a80ebda04015c0d444f4e6af96 Mon Sep 17 00:00:00 2001 From: Sandro Date: Mon, 1 Jul 2024 21:57:47 +0200 Subject: [PATCH] Allow easy overwriting of default options (#21) --- modules/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/default.nix b/modules/default.nix index b364a77..094b702 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -1,3 +1,5 @@ +{ lib, ... }: + { imports = [ ./cmp.nix @@ -7,7 +9,7 @@ ./which_key.nix ./telescope.nix ]; - +} // lib.mapAttrsRecursive (_: lib.mkDefault) { viAlias = true; vimAlias = true;