aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/orgmode.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/orgmode.lua')
-rw-r--r--lua/plugins/orgmode.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/lua/plugins/orgmode.lua b/lua/plugins/orgmode.lua
index fe09f3e..a9d6ea0 100644
--- a/lua/plugins/orgmode.lua
+++ b/lua/plugins/orgmode.lua
@@ -3,15 +3,9 @@ return {
3 event = 'VeryLazy', 3 event = 'VeryLazy',
4 ft = { 'org' }, 4 ft = { 'org' },
5 config = function() 5 config = function()
6 -- Setup orgmode
7 require('orgmode').setup({ 6 require('orgmode').setup({
8 org_agenda_files = '~/orgfiles/**/*', 7 org_agenda_files = '~/orgfiles/**/*',
9 org_default_notes_file = '~/orgfiles/refile.org', 8 org_default_notes_file = '~/orgfiles/refile.org',
10 }) 9 })
11 require('cmp').setup({
12 sources = {
13 { name = 'orgmode' }
14 }
15 })
16 end, 10 end,
17} 11}
..