32 lines
584 B
Lua
32 lines
584 B
Lua
return {
|
|
"foozzi/mkdnflow.nvim",
|
|
lazy = false,
|
|
config = function()
|
|
require("mkdnflow").setup({
|
|
modules = {
|
|
bib = true,
|
|
buffers = true,
|
|
conceal = true,
|
|
cursor = true,
|
|
folds = true,
|
|
links = true,
|
|
lists = true,
|
|
maps = true,
|
|
paths = true,
|
|
tables = true,
|
|
yaml = true,
|
|
cmp = true,
|
|
},
|
|
filetypes = { md = true, rmd = true, markdown = true, telekasten = true },
|
|
links = {
|
|
transform_explicit = function(text)
|
|
return text
|
|
end,
|
|
style = "wiki",
|
|
},
|
|
})
|
|
end,
|
|
dependencies = {
|
|
"bullets-vim/bullets.vim",
|
|
},
|
|
}
|