mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 06:40:25 +01:00
20 lines
415 B
Lua
20 lines
415 B
Lua
return {
|
|
"roodolv/markdown-toggle.nvim",
|
|
config = function()
|
|
require("markdown-toggle").setup({
|
|
keymaps = {
|
|
toggle = {
|
|
["<C-q>"] = "quote",
|
|
["<C-l>"] = "list",
|
|
["<Leader><C-l>"] = "list_cycle",
|
|
["<C-n>"] = "olist",
|
|
["<M-x>"] = "checkbox_cycle",
|
|
["<Leader><M-x>"] = "checkbox",
|
|
["<C-h>"] = "heading",
|
|
["<Leader><C-h>"] = "heading_toggle",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|