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