18 lines
403 B
Lua
18 lines
403 B
Lua
-- makdown-preview.nvim
|
|
-- installed with code found at https://github.com/iamcco/markdown-preview.nvim/issues/558#issuecomment-1514701537
|
|
|
|
-- Force the light theme, no matter the system option is.
|
|
vim.cmd([[ let g:mkdp_theme = 'light' ]])
|
|
|
|
return {
|
|
{
|
|
"iamcco/markdown-preview.nvim",
|
|
ft = {
|
|
'pandoc',
|
|
'markdown'
|
|
},
|
|
lazy = true,
|
|
build = "cd app && yarn install",
|
|
},
|
|
}
|