Files
nvim/lua/custom/plugins/init.lua
T
2024-09-20 11:21:03 -04:00

23 lines
595 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' },
},
{
'akinsho/toggleterm.nvim',
version = '*',
opts = {--[[ things you want to change go here]]
},
},
}