Updates nvim setup
This commit is contained in:
parent
1c38c7b171
commit
6f069d32e1
13 changed files with 285 additions and 4 deletions
17
.config/nvim/lua/plugins/render-markdown.lua
Normal file
17
.config/nvim/lua/plugins/render-markdown.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
return {
|
||||
"MeanderingProgrammer/render-markdown.nvim",
|
||||
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
|
||||
opts = {},
|
||||
config = function()
|
||||
require("render-markdown").setup({
|
||||
bullet = {},
|
||||
anti_conceal = {
|
||||
enabled = false,
|
||||
},
|
||||
preset = "obsidian",
|
||||
heading = {
|
||||
position = "inline",
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue