- 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.
29 lines
546 B
Nix
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";
|
|
};
|
|
}
|
|
];
|
|
}
|