nixvim/config/plugins/utils/markdown-preview.nix
Roel de Cort f44000e518
patch: mix fixes (#33)
- During build time multiple warnings were shown about the deprecation
of certain options. These have been moved to their new places.
- Disable the CMP Ghost Text option because it was driving me nuts.
2024-09-11 20:56:19 +02:00

29 lines
546 B
Nix

_: {
plugins = {
markdown-preview = {
enable = true;
settings = {
browser = "firefox";
echo_preview_url = 1;
port = "6969";
preview_options = {
disable_filename = 1;
disable_sync_scroll = 1;
sync_scroll_type = "middle";
};
theme = "dark";
};
};
};
keymaps = [
{
mode = "n";
key = "<leader>mp";
action = "<cmd>MarkdownPreview<cr>";
options = {
desc = "Toggle Markdown Preview";
};
}
];
}