Better Markdown #24

Merged
wesley merged 1 commits from better-markdown into main 2024-10-20 15:43:42 -04:00
2 changed files with 12 additions and 1 deletions
Showing only changes of commit 6ffe89a826 - Show all commits

View File

@@ -0,0 +1,11 @@
return {
"MeanderingProgrammer/render-markdown.nvim",
config = function ()
require("render-markdown").setup({
dependencies = {
'nvim-treesitter/nvim-treesitter',
'nvim-tree/nvim-web-devicons',
},
})
end
}

View File

@@ -4,7 +4,7 @@ return{
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "cmake", "cpp", "lua", "python", "rust", "toml" },
ensure_installed = { "c", "cmake", "cpp", "lua", "markdown", "markdown_inline", "python", "rust", "toml" },
auto_install = true,
highlight = { enable = true },
indent = { enable = true },