32 lines
731 B
Lua
32 lines
731 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 {
|
|
{
|
|
'jubnzv/mdeval.nvim',
|
|
event = 'VeryLazy',
|
|
opt = function()
|
|
return vim.g.markdown_fenced_languages == { 'python', 'cpp' }
|
|
end,
|
|
},
|
|
{
|
|
'iamcco/markdown-preview.nvim',
|
|
cmd = { 'MarkdownPreviewToggle', 'MarkdownPreview', 'MarkdownPreviewStop' },
|
|
ft = { 'markdown' },
|
|
build = function()
|
|
vim.fn['mkdp#util#install']()
|
|
end,
|
|
},
|
|
{
|
|
'nanotee/zoxide.vim',
|
|
},
|
|
{
|
|
'rcarriga/nvim-notify',
|
|
config = function()
|
|
vim.notify = require 'notify'
|
|
end,
|
|
},
|
|
}
|