nvim, herbstluftwm: switch from calcurse to org mode

This commit is contained in:
mequidis
2022-05-15 19:05:12 +03:00
parent 1dcd9e7e9d
commit c01da39679
2 changed files with 6 additions and 4 deletions

View File

@ -22,3 +22,8 @@ vim.api.nvim_create_autocmd({ "FocusGained", "BufEnter", "CursorHold", "CursorHo
pattern = "*",
command = "if mode() != 'c' | checktime | endif",
})
-- org agenda command so I can do nvim +Agenda to open agenda
vim.api.nvim_create_user_command("Agenda", function()
require("orgmode").action("agenda.prompt")
end, {})