summaryrefslogtreecommitdiff
path: root/modules/home-manager/bat.nix
blob: e6984de63f4b6eec688399d057e46d5f261817d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 = builtins.readFile "${inputs.catppuccin-bat}/themes/Catppuccin Mocha.tmTheme";
    };
  };
}