e7141465b1
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.
16 lines
475 B
Lua
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' },
|
|
},
|
|
}
|