mirror of
https://github.com/akr2002/nv.git
synced 2024-11-10 02:59:45 +00:00
18 lines
260 B
Nix
18 lines
260 B
Nix
|
{
|
||
|
plugins.markdown-preview = {
|
||
|
enable = true;
|
||
|
theme = "dark";
|
||
|
};
|
||
|
keymaps = [
|
||
|
{
|
||
|
mode = "n";
|
||
|
key = "<leader>cp";
|
||
|
action = "<cmd>MarkdownPreview<cr>";
|
||
|
options = {
|
||
|
desc = "Markdown Preview";
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
|