Adding my neovim config

This commit is contained in:
2025-05-31 08:41:58 +02:00
parent 2b8c11fd21
commit b6790941be
47 changed files with 1778 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
return {
"MeanderingProgrammer/render-markdown.nvim",
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
---@module 'render-markdown'
---@type render.md.UserConfig
opts = {},
ft = { "markdown" },
config = function()
require("render-markdown").setup({
completions = { lsp = { enabled = true } },
preset = "lazy",
heading = {
enabled = true,
},
checkbox = {
enabled = true,
},
})
end,
}