We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9f250 commit a72d091Copy full SHA for a72d091
README.md
@@ -64,12 +64,24 @@ call dein#add('kristijanhusak/orgmode.nvim')
64
## Setup
65
66
```lua
67
+-- init.lua
68
require('orgmode').setup({
69
org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
70
org_default_notes_file = '~/Dropbox/org/refile.org',
71
})
72
```
73
74
+Or if you are using `init.vim`:
75
+```vim
76
+" init.vim
77
+lua << EOF
78
+require('orgmode').setup({
79
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
80
+ org_default_notes_file = '~/Dropbox/org/refile.org',
81
+})
82
+EOF
83
+```
84
+
85
* **Open agenda prompt**: <kbd>\<Leader\>oa</kbd>
86
* **Open capture prompt**: <kbd>\<Leader\>oc</kbd>
87
* In any orgmode buffer press <kbd>?</kbd> for help
0 commit comments