diff --git a/options.html b/options.html index 0b3a3ee0e..6b4b04426 100644 --- a/options.html +++ b/options.html @@ -6681,16 +6681,18 @@ null or path
Default:
Declared by:
<home-manager/modules/programs/lf.nix>
- |
programs.lf.settingsAn attribute set of lf settings. The attribute names and corresponding -values must be among the following supported options.
anchorfindboolean
color256boolean
dircountsboolean
dirfirstboolean
drawboxboolean
errorfmtstring
filesepstring
findlensigned integer
globsearchboolean
hiddenboolean
iconsboolean
ifsstring
ignorecaseboolean
ignorediaboolean
incsearchboolean
infostring
numberboolean
periodsigned integer
previewboolean
promptfmtstring
ratiosstring
relativenumberboolean
reverseboolean
scrolloffsigned integer
shellstring
shelloptsstring
smartcaseboolean
smartdiaboolean
sortbystring
tabstopsigned integer
timefmtstring
wrapscanboolean
wrapscrollboolean
See the lf documentation for detailed descriptions of these options.
-Use programs.lf.previewer.* to set lf’s
-previewer option, and
-programs.lf.extraConfig for any other option not listed above.
-All string options are quoted with double quotes.
Type: -submodule
Default: +
programs.lf.settingsAn attribute set of lf settings. See the lf documentation for
+detailed descriptions of these options. Prefer
+programs.lf.previewer.* for setting lf’s previewer
+option. All string options are quoted with double quotes.
Type: +attribute set of (string or signed integer or list of (string or signed integer) or boolean)
Default:
{ }
Example:
{
number = true;
- ratios = "1:1:2";
+ ratios = [
+ 1
+ 1
+ 2
+ ];
tabstop = 4;
}
Declared by:
|