about summary refs log tree commit diff stats
path: root/home-manager/config/less/default.nix
blob: fe7142f1eb0d06841e1b63376430f13adf72fdd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  config,
  pkgs,
  ...
}: {
  programs.less = {
    enable = true;
    keys = ''
      t   forw-line
      n   back-line
      l   repeat-search
      L   reverse-search
    '';
  };
}