try orgmode again

This commit is contained in:
Michael Floßmann 2026-03-11 09:58:27 +01:00
parent 1785d696a5
commit 783683efc3
2 changed files with 10 additions and 5 deletions

View file

@ -71,12 +71,17 @@ return {
desc = "Close buffer from tabline",
},
["<Leader>W"] = { desc = "VimWiki"},
["<Leader>W<Leader>"] = { desc = "Diary"},
-- ["<C-S>"] = { function() require("smart-splits").move_cursor_left() end, desc = "Move to left split" },
-- ["<C-N>"] = { function() require("smart-splits").move_cursor_down() end, desc = "Move to below split" },
-- ["<C-r>"] = { function() require("smart-splits").move_cursor_up() end, desc = "Move to above split" },
-- ["<C-L>"] = { function() require("smart-splits").move_cursor_right() end, desc = "Move to right split" },
-- ["<Leader>W"] = { desc = "VimWiki" },
-- ["<Leader>W<Leader>"] = { desc = "Diary" },
-- tables with just a `desc` key will be registered with which-key if it's installed
-- this is useful for naming menus
-- ["<Leader>b"] = { desc = "Buffers" },
["<Leader>O"] = { desc = "Org-mode" },
-- setting a mapping to false will disable it
-- ["<C-S>"] = false,

View file

@ -10,8 +10,8 @@ return {
org_default_notes_file = "~/orgfiles/refile.org",
mappings = {
global = {
org_capture = "gC",
org_agenda = "gA",
org_capture = "<leader>Oc",
org_agenda = "<leader>Oa",
},
},
}