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