diff options
-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 |