mirror of
https://github.com/jbowdre/dotfiles.git
synced 2025-01-13 04:29:14 +00:00
27 lines
500 B
Nix
27 lines
500 B
Nix
{
|
|
programs.nixvim = {
|
|
plugins.markdown-preview = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
auto_close = 0;
|
|
combine_preview = 1;
|
|
echo_preview_url = 1;
|
|
theme = "dark";
|
|
};
|
|
};
|
|
|
|
files."after/ftplugin/markdown.lua".keymaps = [
|
|
{
|
|
mode = "n";
|
|
key = "<leader>m";
|
|
action = ":MarkdownPreview<cr>";
|
|
}
|
|
{
|
|
mode = "n";
|
|
key = "<leader>M";
|
|
action = ":MarkdownPreviewStop<cr>";
|
|
}
|
|
];
|
|
};
|
|
}
|