Files
nvim/lua/custom/plugins/init.lua
T
2024-12-28 21:31:53 -05:00

29 lines
709 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' },
},
{
'navarasu/onedark.nvim',
opts = {
style = 'warm',
transparent = true,
term_colors = true,
},
},
{
'folke/tokyonight.nvim',
},
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
}