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