kickstart.nvim/lua/custom/plugins/init.lua

41 lines
828 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
--
local config = {
{
vim.cmd 'set conceallevel=1',
},
}
local plugins = {
{
'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,
},
}
return plugins, config