fix comments for PR#763

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

View file

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