mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
25 lines
548 B
Lua
25 lines
548 B
Lua
-- This needs some work, as it's not working. May need to install a different browser??
|
|
return {
|
|
"iamcco/markdown-preview.nvim",
|
|
enabled = false,
|
|
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
|
ft = { "markdown" },
|
|
config = function()
|
|
return {
|
|
mkdp_browser = "Vivaldi",
|
|
}
|
|
end,
|
|
keys = {
|
|
{
|
|
"<leader>mp",
|
|
ft = "markdown",
|
|
"<cmd>MarkdownPreviewToggle<cr>",
|
|
desc = "Markdown Preview",
|
|
},
|
|
},
|
|
build = "cd app && yarn install",
|
|
init = function()
|
|
vim.g.mkdp_filetypes = { "markdown" }
|
|
end,
|
|
}
|