summary refs log tree commit diff
path: root/.vim/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/plugins.lua')
-rw-r--r--.vim/lua/plugins.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua
index 425c2ca..98ba6bc 100644
--- a/.vim/lua/plugins.lua
+++ b/.vim/lua/plugins.lua
@@ -369,6 +369,19 @@ return require('packer').startup({function()
       require('orgmode').setup {
         org_agenda_files = {'$HOME/.zk/.orgmode/*.org'},
         org_default_notes_file = '$HOME/.zk/.orgmode/todo.org',
+        org_todo_keywords = {'TODO', 'NEXT', 'WIP', 'DONE'},
+        org_indent_mode = 'noindent',
+        org_agenda_templates = {
+          t = {
+            description = 'Todo',
+            template = '* TODO %?',
+          },
+          n = {
+            description = 'Note',
+            template = '* %?',
+            target = '$HOME/.zk/.orgmode/notes.org',
+          },
+        },
       }
 
       local pickers = require('telescope.pickers')