From a482d31e66c4a555aa13831c9144b6e774f8a2c3 Mon Sep 17 00:00:00 2001
From: ncfavier
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:
|