From 4dd8f4f550f3ca084d27f4e0a20c1fc229764179 Mon Sep 17 00:00:00 2001 From: Ryan Cao <70191398+ryanccn@users.noreply.github.com> Date: Wed, 2 Aug 2023 16:13:05 +0800 Subject: [PATCH] feat(bat): use plain style by default --- programs/bat.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/bat.nix b/programs/bat.nix index ad2bdb2..c9d5501 100644 --- a/programs/bat.nix +++ b/programs/bat.nix @@ -2,8 +2,8 @@ programs.bat = { enable = true; catppuccin.enable = true; - # config = { - # theme = "Catppuccin-frappe"; - # }; + config = { + style = "plain"; + }; }; }