Adding markdown preview

This commit is contained in:
Shawn Peery 2024-06-12 16:37:58 -06:00
parent ef8f2d3728
commit 7d75bbfb27
1 changed files with 8 additions and 0 deletions

View File

@ -234,6 +234,14 @@ vim.opt.rtp:prepend(lazypath)
-- NOTE: Here is where you install your plugins. -- NOTE: Here is where you install your plugins.
require('lazy').setup({ require('lazy').setup({
{
'iamcco/markdown-preview.nvim',
cmd = { 'MarkdownPreviewToggle', 'MarkdownPreview', 'MarkdownPreviewStop' },
ft = { 'markdown' },
build = function()
vim.fn['mkdp#util#install']()
end,
},
{ {
'nvim-orgmode/orgmode', 'nvim-orgmode/orgmode',
event = 'VeryLazy', event = 'VeryLazy',