Compare commits

..

1 commit

Author SHA1 Message Date
Soliprem
95ce28e3e4
Merge 68ad67369e into 42c5228dc1 2024-10-30 17:22:09 -04:00

View file

@ -4,8 +4,9 @@
lib, lib,
... ...
}: let }: let
inherit (lib.strings) concatMapStringsSep; inherit (lib.strings) stringLength concatMapStringsSep;
inherit (lib.modules) mkIf; inherit (lib.modules) mkIf;
cfg = config.vim.utility.preview.markdownPreview; cfg = config.vim.utility.preview.markdownPreview;
in { in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
@ -18,8 +19,8 @@ in {
mkdp_filetypes = [(concatMapStringsSep ", " (x: "'" + x + "'") cfg.filetypes)]; mkdp_filetypes = [(concatMapStringsSep ", " (x: "'" + x + "'") cfg.filetypes)];
mkdp_command_for_global = cfg.alwaysAllowPreview; mkdp_command_for_global = cfg.alwaysAllowPreview;
mkdp_open_to_the_world = cfg.broadcastServer; mkdp_open_to_the_world = cfg.broadcastServer;
mkdp_open_ip = cfg.customIP; mkdp_open_ip = mkIf (stringLength cfg.customIP > 0) cfg.customIP;
mkdp_port = cfg.customPort; mkdp_port = mkIf (stringLength cfg.customPort > 0) cfg.customPort;
}; };
}; };
} }