add orgmode

This commit is contained in:
Thomas Ruoff
2024-05-22 13:51:17 +02:00
parent 63f8ea7897
commit ad705c0776

19
lua/plugins/orgmode.lua Normal file
View File

@@ -0,0 +1,19 @@
return {
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup {
org_agenda_files = '~/org/**/*',
org_default_notes_file = '~/org/refile.org',
}
-- NOTE: If you are using nvim-treesitter with `ensure_installed = "all"` option
-- add `org` to ignore_install
-- require('nvim-treesitter.configs').setup({
-- ensure_installed = 'all',
-- ignore_install = { 'org' },
-- })
end,
}