Files
nix-dotfiles/home/programs/less.nix
2025-11-25 21:07:42 +09:00

12 lines
180 B
Nix

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