feat(bat): configure theme

This commit is contained in:
Michael Mandl 2022-08-02 16:15:42 +02:00
parent dd9172020d
commit 3e45a34ecd
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
2 changed files with 11 additions and 1 deletions

10
home-manager/bat.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, user, ... }:
{
programs = {
bat = {
enable = true;
config.theme = "Solarized (dark)";
};
};
}