MeanderingProgrammer/render-markdown.nvim: Plugin to improve viewing Markdown files in Neovim
github.com·3d
📝Markdown
Preview
Report Post
require('render-markdown').setup({
-- Whether markdown should be rendered by default.
enabled = true,
-- Vim modes that will show a rendered view of the markdown file, :h mode(), for all enabled
-- components. Individual components can be enabled for other modes. Remaining modes will be
-- unaffected by this plugin.
render_modes = { 'n', 'c', 't' },
-- Milliseconds that must pass before updating marks, updates occur.
-- within the context of the visible window, not the entire buffer.
debounce = 100,
-- Pre configured settings that will attempt to mimic various target user experiences.
-- User provided settings will take precedence.
-- | obsidian | mimic Obsidian UI                                          |
-- | lazy     | will attempt to stay up to date with LazyVim configuration |
--...

Similar Posts

Loading similar posts...