From cceae0150ab4890517b24dafa03b5c32183f97b9 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 30 Jun 2023 10:42:28 +0100 Subject: [PATCH] Add neorg calendar module and keybind to use with journal --- lua/plugins/nvim_neorg.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/plugins/nvim_neorg.lua b/lua/plugins/nvim_neorg.lua index 391a21c..9d9d37e 100644 --- a/lua/plugins/nvim_neorg.lua +++ b/lua/plugins/nvim_neorg.lua @@ -15,6 +15,7 @@ return { vim.keymap.set("n", "ww", "Neorg workspace work ") vim.keymap.set("n", "wr", "Neorg return ") vim.keymap.set("n", "jo", "Neorg journal today ") + vim.keymap.set("n", "jc", "Neorg journal custom ") vim.keymap.set("n", "jn", "Neorg journal tomorrow ") vim.keymap.set("n", "jp", "Neorg journal yesterday ") vim.keymap.set("n", "jt", "Neorg journal template ") @@ -27,6 +28,7 @@ return { ["core.completion"] = { config = { engine = "nvim-cmp" } }, ["core.journal"] = {}, ["core.presenter"] = { config = { zen_mode = "zen-mode" } }, + ["core.ui.calendar"] = {}, }, }, }