From 47e484a4284911360d4dcd3b8b28e024cb1e8226 Mon Sep 17 00:00:00 2001 From: dnscio Date: Tue, 4 Feb 2025 07:14:43 +0000 Subject: [PATCH] Update home/modules/nvim/config/lua/plugins/which-key.lua --- .../modules/nvim/config/lua/plugins/which-key.lua | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/home/modules/nvim/config/lua/plugins/which-key.lua b/home/modules/nvim/config/lua/plugins/which-key.lua index d4d729e..afc5049 100644 --- a/home/modules/nvim/config/lua/plugins/which-key.lua +++ b/home/modules/nvim/config/lua/plugins/which-key.lua @@ -107,10 +107,23 @@ return { desc = "Search current word", mode = "n", }, + { "o", group = "org", mode = "n" }, + { + "oi", + ":vsplit ~/orgnzr/inbox.org | wincmd l", + desc = "Open inbox to the side", + mode = "n", + }, + { + "oj", + ":vsplit ~/orgnzr/inbox.org | wincmd l", + desc = "Open journal to the side", + mode = "n", + }, { "t", group = "diagnostics (lsp)", mode = "n" }, { "td", - "FzfLua lsp_diagnostics_document", + "FzfLua diagnostics_document", desc = "Show LSP diagnostics", mode = "n", },