From 69a20370bc70a4d8b0f6080152f85bc741cffc53 Mon Sep 17 00:00:00 2001 From: "Reid \"reidlab" Date: Thu, 1 Aug 2024 01:37:08 -0700 Subject: [PATCH] fix micro theme --- modules/software/editors/micro.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/software/editors/micro.nix b/modules/software/editors/micro.nix index 0618cf1..2fcc456 100644 --- a/modules/software/editors/micro.nix +++ b/modules/software/editors/micro.nix @@ -12,6 +12,7 @@ in { schemeName = "generated"; in mkIf cfg.enable { environment.variables.EDITOR = "micro"; + environment.variables.MICRO_TRUECOLOR = "1"; hm.programs.micro = { enable = true; @@ -23,7 +24,7 @@ in { tabsize = 2; tabstospaces = true; - colorScheme = schemeName; + colorscheme = schemeName; }; };