nvim/lua/plugins/mkdnflow.lua

31 lines
863 B
Lua
Raw Permalink Normal View History

2025-08-21 11:18:50 -05:00
return {
{'jakewvincent/mkdnflow.nvim',
name = 'mkdnflow',
lazy = false,
ext = 'md',
config = function()
require('mkdnflow').setup({
mappings = {
MkdnEnter = {{'n', 'v'}, '<CR>'},
MkdnNewListItem = {'i', '<CR>'},
},
links = {
name_is_source = true,
conceal = true,
style = "wiki",
},
modules = {
yaml = true,
cmp = true,
tables = false,
},
perspective = {
priority = 'first',
root_tell = '.zk'
}
-- Config goes here; leave blank for defaults
})
end,
}
}