From 69e1b233d1578fae02907e0516b3518eb4024a0c Mon Sep 17 00:00:00 2001 From: Proctor Date: Wed, 18 Oct 2023 14:24:55 -0500 Subject: [PATCH] NVIM: add mapping for orgmode to toggle checkbox --- nvim/.config/nvim/fnl/dotfiles/plugin/orgmode.fnl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nvim/.config/nvim/fnl/dotfiles/plugin/orgmode.fnl b/nvim/.config/nvim/fnl/dotfiles/plugin/orgmode.fnl index 64d0593..f8c9eb5 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugin/orgmode.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugin/orgmode.fnl @@ -3,6 +3,9 @@ (orgmode.setup_ts_grammar) (orgmode.setup {:org_agenda_files ["~/Dropbox/org/*" "~/my-orgs/**/*"] - :org_default_notes_file "~/Dropbox/org/refile.org"}) + :org_default_notes_file "~/Dropbox/org/refile.org" + :mappings { + :org { + :org_toggle_checkbox :}}}) (require :dotfiles.plugin.orgbullets)