feat: markdown keybinds to toggle todos

This commit is contained in:
əlemi 2023-12-13 13:22:24 +01:00
parent eea9f850e1
commit 17af2e5f41
Signed by: alemi
GPG key ID: A4895B84D311642C

3
ftplugin/markdown.lua Normal file
View file

@ -0,0 +1,3 @@
-- quickly mark todo boxes as done or not done
vim.keymap.set('n', '<leader><space>', "^f[va]c[x]<esc>", {})
vim.keymap.set('n', '<leader><leader><space>', "^f[va]c[ ]<esc>", {})