Updated plugins

This commit is contained in:
Tony Thayer-Osborne 2025-04-11 13:45:28 -07:00
parent d479a79344
commit 9844d31b4b
No known key found for this signature in database
GPG key ID: 4750FF483E701B75
4 changed files with 114 additions and 210 deletions

View file

@ -0,0 +1,19 @@
return {
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup {
org_agenda_files = '~/orgfiles/**/*',
org_default_notes_file = '~/orgfiles/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,
}