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