conform: comment out conform options

This commit is contained in:
Pei Yang Ching 2025-03-05 18:24:56 +01:00
commit 69030e48f1
2 changed files with 5 additions and 2 deletions

View file

@ -4,7 +4,7 @@
in { in {
options.vim.diagnostics.nvim-lint = { options.vim.diagnostics.nvim-lint = {
# TODO:remove internal # TODO:remove internal
enable = mkEnableOption "asynchronous linter plugin for Neovim [nvim-lint]" // {internal = true;}; enable = mkEnableOption "asynchronous linter plugin for Neovim " // {internal = true;};
linters_by_ft = mkOption { linters_by_ft = mkOption {
internal = true; # TODO: remove internal = true; # TODO: remove
type = attrsOf (listOf str); type = attrsOf (listOf str);

View file

@ -9,7 +9,9 @@
inherit (lib.nvim.lua) mkLuaInline; inherit (lib.nvim.lua) mkLuaInline;
in { in {
options.vim.formatter.conform-nvim = { options.vim.formatter.conform-nvim = {
enable = mkEnableOption "lightweight yet powerful formatter plugin for Neovim [conform-nvim]"; # TODO: remove internal
enable = mkEnableOption "lightweight yet powerful formatter plugin for Neovim [conform-nvim]" // {internal = true;};
/*
setupOpts = mkPluginSetupOption "conform.nvim" { setupOpts = mkPluginSetupOption "conform.nvim" {
formatters_by_ft = mkOption { formatters_by_ft = mkOption {
type = attrs; type = attrs;
@ -52,5 +54,6 @@ in {
''; '';
}; };
}; };
*/
}; };
} }