nix-config/home/pager.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2021-03-13 01:02:19 +01:00
{ config, lib, ... }:
let
cfg = config.my.home.pager;
in
2021-02-20 14:12:57 +01:00
{
2021-03-13 01:02:19 +01:00
options.my.home.pager = with lib.my; {
enable = mkDisableOption "pager configuration";
};
2021-02-20 14:46:58 +01:00
config = lib.mkIf cfg.enable {
programs.lesspipe.enable = true;
home.sessionVariables = {
# My default pager
PAGER = "less";
# Clear the screen on start and exit
LESS = "-R -+X -c";
};
programs.zsh.localVariables = {
# Colored man pages
LESS_TERMCAP_mb = "$(tput bold; tput setaf 2)";
LESS_TERMCAP_md = "$(tput bold; tput setaf 6)";
LESS_TERMCAP_me = "$(tput sgr0)";
LESS_TERMCAP_so = "$(tput bold; tput setaf 3; tput setab 4)";
LESS_TERMCAP_se = "$(tput rmso; tput sgr0)";
LESS_TERMCAP_us = "$(tput bold; tput setaf 2)";
LESS_TERMCAP_ue = "$(tput rmul; tput sgr0)";
LESS_TERMCAP_mr = "$(tput rev)";
LESS_TERMCAP_mh = "$(tput dim)";
LESS_TERMCAP_ZN = "$(tput ssubm)";
LESS_TERMCAP_ZV = "$(tput rsubm)";
LESS_TERMCAP_ZO = "$(tput ssupm)";
LESS_TERMCAP_ZW = "$(tput rsupm)";
};
2021-02-20 14:46:58 +01:00
};
2021-02-20 14:12:57 +01:00
}