summaryrefslogtreecommitdiff
path: root/modules/common/bat.nix
blob: 7f78a59f0ec8d8e9179eb75dd281ed1f37072b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  config,
  lib,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.bat;
in {
  options.nixfiles.modules.bat.enable =
    mkEnableOption "bat, an alternative to cat";

  config = mkIf cfg.enable {
    hm.programs = {
      bat = {
        enable = true;
        config = {
          style = "plain";
          tabs = "4";
          theme = "base16";
          wrap = "never";
        };
      };

      bash = {
        shellAliases = {
          baj = "bat --language=json --tabs 2";
          bay = "bat --language=yaml --tabs 2";
          bas = "bat --language=syslog";
        };

        initExtra = mkAfter ''
          _complete_alias bay _bat bat
          _complete_alias baj _bat bat
        '';
      };
    };
  };
}