AutoYADM commit: 2025-01-20 19:15:03

This commit is contained in:
Daniel Fichtinger 2025-01-20 19:15:03 -05:00
parent 16f289a39d
commit 222b1e8765

View file

@ -3,18 +3,23 @@ return {
"nvim-orgmode/orgmode",
event = "VeryLazy",
ft = { "org" },
opts = {
org_agenda_files = "~/orgfiles/**/*",
org_default_notes_file = "~/orgfiles/refile.org",
org_startup_folded = "content",
win_split_mode = "auto",
mappings = {
org = {
org_timestamp_down = "<C-a>",
org_timestamp_up = "<C-i>",
opts = function()
require("nvim-treesitter.configs").setup({
ignore_install = { "org" },
})
return {
org_agenda_files = "~/orgfiles/**/*",
org_default_notes_file = "~/orgfiles/refile.org",
org_startup_folded = "content",
win_split_mode = "auto",
mappings = {
org = {
org_timestamp_down = "<C-a>",
org_timestamp_up = "<C-i>",
},
},
},
},
}
end,
},
{
"chipsenkbeil/org-roam.nvim",