24 lines
607 B
Lua
24 lines
607 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' },
|
|
build = 'cd app && yarn install',
|
|
init = function()
|
|
vim.g.mkdp_filetypes = { 'markdown' }
|
|
end,
|
|
ft = { 'markdown' },
|
|
},
|
|
{
|
|
'navarasu/onedark.nvim',
|
|
opts = {
|
|
style = 'warm',
|
|
transparent = true,
|
|
term_colors = true,
|
|
},
|
|
},
|
|
}
|