22 lines
630 B
Lua
22 lines
630 B
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
return {
|
|
{
|
|
'iamcco/markdown-preview.nvim',
|
|
cmd = { 'MarkdownPreviewToggle', 'MarkdownPreview', 'MarkdownPreviewStop' },
|
|
ft = { 'markdown' },
|
|
build = 'cd app && yarn install',
|
|
init = function()
|
|
vim.g.mkdp_filetypes = { 'markdown' }
|
|
end,
|
|
},
|
|
{
|
|
'barrett-ruth/live-server.nvim',
|
|
build = 'pnpm add -g live-server',
|
|
cmd = { 'LiveServerStart', 'LiveServerStop' },
|
|
config = true,
|
|
},
|
|
}
|