about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/less/default.nix
blob: 9991ebefcc8e32ced70bbaec7a217681c05e4018 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{config, ...}: {
  home.sessionVariables = {
    PAGER = "less";
    MANPAGER = "less --color=d+r --color=u+b";

    # These are added here because adding them in the lesskey file somehow doesn't work.
    LESSHISTSIZE = 10000;
    LESSHISTFILE = "${config.xdg.dataHome}/less/history";
  };

  programs.less = {
    enable = true;
    keys =
      builtins.readFile ./command.less
      + builtins.readFile ./line-edit.less
      + builtins.readFile ./env.less;
  };
}