Better Markdown
Added in the plugin 'MeanderingProgrammer/render-markdown.nvim' to supplement the markdown rendering to make it better and add more features.
This commit is contained in:
11
nvim/dot-config/nvim/lua/plugins/markdown.lua
Normal file
11
nvim/dot-config/nvim/lua/plugins/markdown.lua
Normal 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
|
||||
}
|
||||
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user