Compare commits

..

No commits in common. "3e3d7171c1b8354065adf9890c2e2a469441f300" and "9220c27e85d6d30166473999622aab5b387f3466" have entirely different histories.

View file

@ -119,14 +119,9 @@ in {
setupOpts = mkPluginSetupOption "render-markdown" { setupOpts = mkPluginSetupOption "render-markdown" {
file_types = lib.mkOption { file_types = lib.mkOption {
type = nullOr (listOf str); type = listOf (nullOr str);
default = null; default = [];
description = '' description = "List of buffer filetypes to enable this plugin in. This will cause the plugin to attach to new buffers who have any of these filetypes.";
List of buffer filetypes to enable this plugin in.
This will cause the plugin to attach to new buffers who
have any of these filetypes.
'';
}; };
}; };
}; };