fix comments for PR#763

This commit is contained in:
Venkatesan Ravi 2025-03-31 01:59:28 +00:00
commit 78ca1e53d7

View file

@ -56,20 +56,20 @@ in {
format = { format = {
enable = mkOption { enable = mkOption {
description = "Enable Lua formatting";
type = bool; type = bool;
default = config.vim.languages.enableFormat; default = config.vim.languages.enableFormat;
description = "Enable Lua formatting";
}; };
type = mkOption { type = mkOption {
description = "Lua formatter to use";
type = enum (attrNames formats); type = enum (attrNames formats);
default = defaultFormat; default = defaultFormat;
description = "Lua formatter to use";
}; };
package = mkOption { package = mkOption {
description = "Lua formatter package";
type = package; type = package;
default = formats.${cfg.format.type}.package; default = formats.${cfg.format.type}.package;
description = "Lua formatter package";
}; };
}; };