Files
nix-dotfiles/home/programs/less.nix
2025-06-04 12:01:57 +02:00

12 lines
178 B
Nix

{ config, ... }:
{
programs.less = {
keys = ''
#env
LESS = -i -R
LESSHISTSIZE=20000
LESSHISTFILE=${config.xdg.dataHome}/less/history
'';
};
}