15 lines
406 B
Nix
15 lines
406 B
Nix
|
{ pkgs, ... }: {
|
||
|
programs.bat = {
|
||
|
enable = true;
|
||
|
config = { theme = "ctp-mocha"; };
|
||
|
themes = {
|
||
|
ctp-mocha = builtins.readFile (pkgs.fetchFromGitHub {
|
||
|
owner = "catppuccin";
|
||
|
repo = "bat";
|
||
|
rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1";
|
||
|
sha256 = "1g2r6j33f4zys853i1c5gnwcdbwb6xv5w6pazfdslxf69904lrg9";
|
||
|
} + "/Catppuccin-mocha.tmTheme");
|
||
|
};
|
||
|
};
|
||
|
}
|