diff --git a/.config/nvim/lua/plugins/markdown-toggle.lua b/.config/nvim/lua/plugins/markdown-toggle.lua new file mode 100644 index 0000000..9b33fb3 --- /dev/null +++ b/.config/nvim/lua/plugins/markdown-toggle.lua @@ -0,0 +1,19 @@ +return { + "roodolv/markdown-toggle.nvim", + config = function() + require("markdown-toggle").setup({ + keymaps = { + toggle = { + [""] = "quote", + [""] = "list", + [""] = "list_cycle", + [""] = "olist", + [""] = "checkbox", + [""] = "checkbox_cycle", + [""] = "heading", + [""] = "heading_toggle", + }, + }, + }) + end, +}