From 94f2aacb56c8562cc8551480330cc7166ce0b595 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Tue, 15 Mar 2022 21:48:44 -0400 Subject: [PATCH] Vim org stuff --- lunar.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lunar.lua b/lunar.lua index 4a9ad17..65e5f78 100644 --- a/lunar.lua +++ b/lunar.lua @@ -36,6 +36,7 @@ lvim.plugins = { require('orgmode').setup { org_agenda_files = {'~/Sync/Notes/*'}, org_default_notes_file = '~/Sync/Notes/Main.org', + org_log_done = false, -- org_todo_keywords = {'TODO', 'WAIT', '|', 'DONE'}, } -- vim.opt.conceallevel = 1 @@ -81,6 +82,7 @@ lvim.plugins = { -- auto_dark_mode.init() -- end -- }, + { "jamessan/vim-gnupg" }, } lvim.builtin.which_key.mappings["t"] = { @@ -92,6 +94,12 @@ lvim.builtin.which_key.mappings["t"] = { l = { "TroubleToggle loclist", "loclist" }, r = { "TroubleToggle lsp_references", "references" }, } +lvim.builtin.which_key.mappings["T"] = { + name = "Table Mode", + t = { ":TableModeToggle", "Toggle enable" }, + e = { ":TableEvalFormulaLine", "Eval formula line" }, + T = { ":TableModeRealign", "Realign" }, +} lvim.builtin.which_key.mappings["m"] = { "MinimapToggle", "Toggle Minimap" } lvim.builtin.which_key.mappings["B"] = { "BlamerShow", "Show Blamer" }