nix-community.nixvim/tests/test-sources/plugins/by-name/markdown-preview/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2024-03-02 21:20:27 +01:00
{
empty = {
plugins.markdown-preview.enable = true;
};
example = {
plugins.markdown-preview = {
enable = true;
settings = {
2024-09-08 13:52:18 +01:00
auto_start = 1;
auto_close = 1;
refresh_slow = 0;
command_for_global = 0;
open_to_the_world = 0;
2024-03-02 21:20:27 +01:00
open_ip = "";
browser = "firefox";
2024-09-08 13:52:18 +01:00
echo_preview_url = 1;
2024-03-02 21:20:27 +01:00
browser_func = "";
preview_options = {
2024-05-05 19:39:35 +02:00
mkit = [ ];
katex = [ ];
uml = [ ];
maid = [ ];
2024-09-08 13:52:18 +01:00
disable_sync_scroll = 0;
2024-03-02 21:20:27 +01:00
sync_scroll_type = "middle";
2024-09-08 13:52:18 +01:00
hide_yaml_meta = 1;
2024-05-05 19:39:35 +02:00
sequence_diagrams = [ ];
flowchart_diagrams = [ ];
2024-09-08 13:52:18 +01:00
content_editable = 0;
disable_filename = 0;
2024-05-05 19:39:35 +02:00
toc = [ ];
2024-03-02 21:20:27 +01:00
};
markdown_css = "/Users/username/markdown.css";
highlight_css.__raw = "vim.fn.expand('~/highlight.css')";
port = "8080";
page_title = "\$\{name}";
images_path = "";
2024-05-05 19:39:35 +02:00
filetypes = [ "markdown" ];
2024-03-02 21:20:27 +01:00
theme = "dark";
2024-09-08 13:52:18 +01:00
combine_preview = 0;
combine_preview_auto_refresh = 1;
2024-03-02 21:20:27 +01:00
};
};
};
}