Skip to content

Commit 8a1ca10

Browse files
committed
cleanup docs
Signed-off-by: saygo-png <[email protected]>
1 parent 1271354 commit 8a1ca10

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plugins/by-name/conform-nvim/default.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@ lib.nixvim.plugins.mkNeovimPlugin {
5050

5151
extraOptions = {
5252
autoInstall = {
53-
enable = lib.mkEnableOption ''
54-
Whether to automatically install formatters listed in `formatters_by_ft`.
55-
'';
53+
enable = lib.mkEnableOption "
54+
automatic installation of formatters listed in `settings.formatters_by_ft` and `settings.formatters`
55+
";
5656
overrides = lib.mkOption {
5757
type = with types; attrsOf (nullOr package);
5858
default = { };
5959
example = {
6060
"treefmt" = null;
61-
"pyproject-fmt" = pkgs.python312Packages.pyproject-parser;
61+
"pyproject-fmt" = lib.literalExpression "pkgs.python312Packages.pyproject-parser";
6262
};
6363
description = ''
64-
Attribute set of conform formatter names to nix packages.
64+
Attribute set of formatter names to nix packages.
6565
Can be set to null to disable auto-installing of a specific formatter.
6666
'';
6767
};

0 commit comments

Comments
 (0)