Merge pull request 'Better Markdown' (#24) from better-markdown into main
Reviewed-on: #24
This commit was merged in pull request #24.
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()
|
config = function()
|
||||||
local configs = require("nvim-treesitter.configs")
|
local configs = require("nvim-treesitter.configs")
|
||||||
configs.setup({
|
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,
|
auto_install = true,
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
|||||||
Reference in New Issue
Block a user