return { "roodolv/markdown-toggle.nvim", config = function() require("markdown-toggle").setup({ -- cycle through checkboxes cycle_box_table = true, -- doing, done, wut, important, forwarded box_table = { "/", "x", "?", "!", ">" }, keymaps = { toggle = { [""] = "quote", [""] = "list", [""] = "list_cycle", [""] = "olist", [""] = "checkbox_cycle", [""] = "checkbox", [""] = "heading", [""] = "heading_toggle", }, }, }) end, }