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", },