ref: change file_types type to nullOr(listOf str)

This commit is contained in:
Farouk Brown 2025-04-22 22:36:11 +01:00
commit 3e3d7171c1

View file

@ -119,8 +119,8 @@ 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 = '' description = ''
List of buffer filetypes to enable this plugin in. List of buffer filetypes to enable this plugin in.