diff options
Diffstat (limited to 'lua/plugins/orgmode.lua')
-rw-r--r-- | lua/plugins/orgmode.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/plugins/orgmode.lua b/lua/plugins/orgmode.lua new file mode 100644 index 0000000..a9d6ea0 --- /dev/null +++ b/lua/plugins/orgmode.lua | |||
@@ -0,0 +1,11 @@ | |||
1 | return { | ||
2 | 'nvim-orgmode/orgmode', | ||
3 | event = 'VeryLazy', | ||
4 | ft = { 'org' }, | ||
5 | config = function() | ||
6 | require('orgmode').setup({ | ||
7 | org_agenda_files = '~/orgfiles/**/*', | ||
8 | org_default_notes_file = '~/orgfiles/refile.org', | ||
9 | }) | ||
10 | end, | ||
11 | } | ||