Added mdx Support via custom plugin

This commit is contained in:
jensonjohnathon 2025-04-04 08:21:02 +02:00
parent a8276b207a
commit 806fdc8e93
2 changed files with 12 additions and 2 deletions

View File

@ -1016,7 +1016,8 @@ require('lazy').setup({
-- This is the easiest way to modularize your config. -- This is the easiest way to modularize your config.
-- --
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- { import = 'custom.plugins' }, { import = 'custom.plugins' },
-- --
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec` -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope! -- Or use telescope!

View File

@ -2,4 +2,13 @@
-- I promise not to create any merge conflicts in this directory :) -- I promise not to create any merge conflicts in this directory :)
-- --
-- See the kickstart.nvim README for more information -- See the kickstart.nvim README for more information
return {} return {
{
'davidmh/mdx.nvim',
dependencies = { 'nvim-treesitter/nvim-treesitter' },
lazy = false,
config = function()
require('mdx').setup()
end,
},
}