2023-05-29 12:23:55 +02:00
|
|
|
-- makdown-preview.nvim
|
|
|
|
-- installed with code found at https://github.com/iamcco/markdown-preview.nvim/issues/558#issuecomment-1514701537
|
|
|
|
|
2023-05-30 20:55:59 +02:00
|
|
|
-- Force the light theme, no matter the system option is.
|
|
|
|
vim.cmd([[ let g:mkdp_theme = 'light' ]])
|
|
|
|
|
2023-05-29 12:23:55 +02:00
|
|
|
return {
|
|
|
|
{
|
|
|
|
"iamcco/markdown-preview.nvim",
|
2023-05-30 20:55:59 +02:00
|
|
|
ft = "pandoc",
|
2023-05-29 12:23:55 +02:00
|
|
|
lazy = true,
|
2023-05-30 20:55:59 +02:00
|
|
|
build = "cd app && yarn install",
|
|
|
|
},
|
2023-05-29 12:23:55 +02:00
|
|
|
}
|