diff --git a/config/plugins/neorg.nix b/config/plugins/neorg.nix index 1bbbab6..e74bfe4 100644 --- a/config/plugins/neorg.nix +++ b/config/plugins/neorg.nix @@ -1,3 +1,4 @@ +# vim: ts=4:sts=0:sw=0:noet { helpers , ... }: @@ -24,22 +25,20 @@ helpers g = "~/neorg/grammar"; p = "~/neorg/perl"; m = "~/neorg/misc"; - nvim = "~/.config/nvim/NeorgNvimNotes"; + # nvim = "~/.config/nvim/NeorgNvimNotes"; }; default_workspace = "m"; }; }; "core.keybinds" = { - # config = { - # hook.__raw = '' - # function(keybinds) - # -- unmap Alt-Enter to "core.itero.next-iteration", "" - # keybinds.unmap("norg", "i", "") - # -- map Shift-Enter to "core.itero.next-iteration", "" - # keybinds.remap_event("norg", "i", "", "core.itero.next-iteration", "") - # end, - # ''; - # }; + config = { + hook.__raw = '' + function(keybinds) + keybinds.unmap("norg", "i", "") + keybinds.remap_event("norg", "i", "", "core.itero.next-iteration", "") + end + ''; + }; }; }; };