24 lines
465 B
Lua
24 lines
465 B
Lua
return {
|
|
{
|
|
"MeanderingProgrammer/render-markdown.nvim",
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"nvim-mini/mini.nvim",
|
|
},
|
|
---@module 'render-markdown'
|
|
---@type render.md.UserConfig
|
|
opts = require "config.format.markdown",
|
|
},
|
|
{
|
|
"mrcjkb/rustaceanvim",
|
|
version = "^9",
|
|
-- lazy = false,
|
|
},
|
|
{
|
|
"stevearc/conform.nvim",
|
|
config = function()
|
|
require "config.format.conform"
|
|
end,
|
|
},
|
|
}
|