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,7 +3,11 @@ return {
"nvim-orgmode/orgmode", "nvim-orgmode/orgmode",
event = "VeryLazy", event = "VeryLazy",
ft = { "org" }, ft = { "org" },
opts = { opts = function()
require("nvim-treesitter.configs").setup({
ignore_install = { "org" },
})
return {
org_agenda_files = "~/orgfiles/**/*", org_agenda_files = "~/orgfiles/**/*",
org_default_notes_file = "~/orgfiles/refile.org", org_default_notes_file = "~/orgfiles/refile.org",
org_startup_folded = "content", org_startup_folded = "content",
@ -14,7 +18,8 @@ return {
org_timestamp_up = "<C-i>", org_timestamp_up = "<C-i>",
}, },
}, },
}, }
end,
}, },
{ {
"chipsenkbeil/org-roam.nvim", "chipsenkbeil/org-roam.nvim",