diff options
author | Soispha <soispha@vhack.eu> | 2024-01-21 20:48:31 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-21 20:51:38 +0100 |
commit | af48ecac167b64f162e034467048744f1a2b0303 (patch) | |
tree | efe7fe06830c4b4938faf9b573d2412b4fc126cf /hm | |
parent | fix(hm/conf/less): Correctly export less variables (diff) | |
download | nixos-config-af48ecac167b64f162e034467048744f1a2b0303.zip |
fix(hm/conf/less): Ensure that less can read the lesskey file
Diffstat (limited to 'hm')
-rw-r--r-- | hm/soispha/conf/less/command.less | 4 | ||||
-rw-r--r-- | hm/soispha/conf/less/default.nix | 10 | ||||
-rw-r--r-- | hm/soispha/conf/less/env.less | 3 |
3 files changed, 8 insertions, 9 deletions
diff --git a/hm/soispha/conf/less/command.less b/hm/soispha/conf/less/command.less index c85350f4..5365686b 100644 --- a/hm/soispha/conf/less/command.less +++ b/hm/soispha/conf/less/command.less @@ -36,7 +36,7 @@ R repaint-flush r repaint ˆR repaint ˆL repaint -\e undo-hilite +\en undo-hilite \eU clear-search g goto-line \kh goto-line @@ -121,4 +121,6 @@ Q quit :q quit :Q quit ZZ quit + +# Stop processing (and ignore less' default values) #stop diff --git a/hm/soispha/conf/less/default.nix b/hm/soispha/conf/less/default.nix index 1d598995..f4103080 100644 --- a/hm/soispha/conf/less/default.nix +++ b/hm/soispha/conf/less/default.nix @@ -2,16 +2,16 @@ 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 - # This next line *must* be under the `./env.less` include, as it extends the environment definitions - + '' - LESSHISTFILE = ${config.xdg.dataHome}/less/history - ''; + + builtins.readFile ./env.less; }; } diff --git a/hm/soispha/conf/less/env.less b/hm/soispha/conf/less/env.less index 2d4f87e3..30f7645d 100644 --- a/hm/soispha/conf/less/env.less +++ b/hm/soispha/conf/less/env.less @@ -1,5 +1,2 @@ #env -LESSHISTSIZE = 10000 LESS = -R --use-color --incsearch --modelines=2 --save-marks --wordwrap --status-line - -# LESSHISTFILE is added in the nix file |