Minor org-mode adjustments, no more CLOSED

This commit is contained in:
Lüdecke Sascha
2026-07-21 11:29:26 +02:00
parent 885cf8a889
commit 35992a31d5

View File

@@ -191,6 +191,8 @@ require("lazy").setup({
config = function() config = function()
-- Setup orgmode -- Setup orgmode
require('orgmode').setup({ require('orgmode').setup({
win_split_mode = 'auto',
org_log_done = false,
-- cf: https://github.com/nvim-orgmode/orgmode/blob/master/docs/configuration.org#mappings -- cf: https://github.com/nvim-orgmode/orgmode/blob/master/docs/configuration.org#mappings
mappings = { mappings = {
org = { org = {
@@ -206,8 +208,8 @@ require("lazy").setup({
org_default_notes_file = sl_opt.org_default_notes_file, org_default_notes_file = sl_opt.org_default_notes_file,
org_archive_location = sl_opt.org_archive_location, org_archive_location = sl_opt.org_archive_location,
org_capture_templates = { org_capture_templates = {
t = { description = 'Task', template = "* TODO %?\n %u"}, t = { description = 'Task', template = "* TODO %?\n %u" },
i = { description = 'Interruption', template = "* STARTED [#A] %^{Working on}\n %U\n %a\n"}, i = { description = 'Interruption', template = "* STARTED [#A] %^{Working on}\n %U\n %a\n" },
}, },
org_todo_keywords = { 'TODO(t)', 'STARTED(s)', 'PLANNED(p)', '|', 'DONE(d)', 'UNPLANNED(u)' }, org_todo_keywords = { 'TODO(t)', 'STARTED(s)', 'PLANNED(p)', '|', 'DONE(d)', 'UNPLANNED(u)' },
org_custom_exports = { org_custom_exports = {