Org Mode Agenda to new tab, show tabbar if >1 tabs

This commit is contained in:
Lüdecke Sascha
2026-09-17 09:07:34 +02:00
parent 955ceb2f61
commit 8258f31107
5 changed files with 34 additions and 5 deletions

View File

@@ -192,7 +192,7 @@ require("lazy").setup({
config = function()
-- Setup orgmode
require('orgmode').setup({
win_split_mode = 'auto',
win_split_mode = '0tabnew',
org_log_done = false,
-- cf: https://github.com/nvim-orgmode/orgmode/blob/master/docs/configuration.org#mappings
mappings = {
@@ -263,6 +263,21 @@ require("lazy").setup({
end
},
-- -- org-super-agenda try it 2026-07-21
-- https://github.com/hamidi-dev/org-super-agenda.nvim
-- {
-- 'hamidi-dev/org-super-agenda.nvim',
-- dependencies = {
-- 'nvim-orgmode/orgmode', -- required
-- { 'lukas-reineke/headlines.nvim', config = true }, -- optional nicety
-- },
-- config = function()
-- require('org-super-agenda').setup({
-- org_directories = sl_opt.org_agenda_files, -- recurse for *.org
-- })
-- end
-- },
-- comfortable table editing, esp. used in orgmode
{ 'dhruvasagar/vim-table-mode' },