summaryrefslogtreecommitdiff
path: root/modules/home-manager/bat.nix
blob: 5a9802e1148299c01c332d2ffaae8c780fab2882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ catppuccin-bat, ...}: {
  # a cat(1) clone with syntax highlighting and Git integration.
  programs.bat = {
    enable = true;
    config = {
      pager = "less -FR";
      theme = "catppuccin-mocha";
    };
    themes = {
      catppuccin-mocha = builtins.readFile "${catppuccin-bat}/Catppuccin-mocha.tmTheme";
    };
  };
}