From b00c8a0501badc9941656a3ce9ca8f9d6761dc6a Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 8 Feb 2024 20:55:26 +0900 Subject: [PATCH] test --- home-manager/common/software/cli/nixvim.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home-manager/common/software/cli/nixvim.nix b/home-manager/common/software/cli/nixvim.nix index 4ed56be6..cbbd1136 100644 --- a/home-manager/common/software/cli/nixvim.nix +++ b/home-manager/common/software/cli/nixvim.nix @@ -1,10 +1,9 @@ { inputs, pkgs, config, lib, theme, ... }: { imports = [ inputs.nixvim.homeManagerModules.nixvim - ]; # ++ lib.optional (builtins.isString theme) ../../../../stylix/${theme}/home-manager/nixvim.nix; + ] ++ lib.optional (builtins.isString theme) ../../../../stylix/${theme}/home-manager/nixvim.nix; programs.nixvim = { - colorscheme = lib.mkForce "everforest"; enable = true; viAlias = true; vimAlias = true;