diff options
Diffstat (limited to 'modules/home/soispha/conf/less/default.nix')
-rw-r--r-- | modules/home/soispha/conf/less/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/home/soispha/conf/less/default.nix b/modules/home/soispha/conf/less/default.nix new file mode 100644 index 00000000..f4103080 --- /dev/null +++ b/modules/home/soispha/conf/less/default.nix @@ -0,0 +1,17 @@ +{config, ...}: { + home.sessionVariables = { + PAGER = "less"; + MANPAGER = "less --color=d+r --color=u+b"; + + # These are added here because adding them in the lesskey file somehow doesn't work. + LESSHISTSIZE = 10000; + LESSHISTFILE = "${config.xdg.dataHome}/less/history"; + }; + programs.less = { + enable = true; + keys = + builtins.readFile ./command.less + + builtins.readFile ./line-edit.less + + builtins.readFile ./env.less; + }; +} |