mkdnflow.lua

~/.config/nvim/lua/plugins/mkdnflow.lua
return {
  "vectorspacexyz/mkdnflow.nvim",
  config = function()
    require("mkdnflow").setup({
      perspective = {
        priority = "root",
        fallback = "current",
        root_tell = "index.md",
      },
      nvim_wd_heel = true,
      links = {
        transform_explicit = false,
      },
      mappings = {
        MkdnDecreaseHeading = false,
      },
    })
  end,
}

Comments