Compare commits

..

2 commits

Author SHA1 Message Date
Farouk Brown
3e3d7171c1 ref: change file_types type to nullOr(listOf str) 2025-04-22 22:36:11 +01:00
Farouk Brown
95e2eec30b doc: format description to a multi-line string 2025-04-22 21:32:53 +01:00

View file

@ -119,9 +119,14 @@ in {
setupOpts = mkPluginSetupOption "render-markdown" { setupOpts = mkPluginSetupOption "render-markdown" {
file_types = lib.mkOption { file_types = lib.mkOption {
type = listOf (nullOr str); type = nullOr (listOf str);
default = []; default = null;
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."; 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.
'';
}; };
}; };
}; };