Files
nvim/lua/custom/plugins/init.lua
T
Alexander Muszynski e7141465b1 added lazygit plugin, removed toggleterm
lazygit added much easier via dedicated plugin versus hacking it with
toggleterm. Already using TMUX so didn't make sense to use toggleterm as
well.
2024-09-26 11:57:41 -04:00

16 lines
475 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' },
},
}