diff options
| author | Robert Günzler <r@gnzler.io> | 2021-08-02 13:56:17 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-08-02 13:56:17 +0200 |
| commit | a1e1a4ae8b16bdde5ec1bb04e6ce925513b94feb (patch) | |
| tree | 5891742352ead3fae12e98efde14de31c9337baf /.vim/lua/plugins.lua | |
| parent | b22dc38564dcc8903f501ed92843aa9db9fd44a7 (diff) | |
vim: update orgmode config
Diffstat (limited to '.vim/lua/plugins.lua')
| -rw-r--r-- | .vim/lua/plugins.lua | 13 |
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') |