diff options
| author | DrNuget <drnuget@outlook.com> | 2026-01-28 19:13:59 +0200 |
|---|---|---|
| committer | DrNuget <drnuget@outlook.com> | 2026-01-28 19:13:59 +0200 |
| commit | 3ecdf5700e3ae53027f8df69035487087cf94145 (patch) | |
| tree | 996f209acf8fda613c0d750b239196a224938028 | |
| parent | 7b8c345d00aff5d1d973e4a63ed1d532cae2677f (diff) | |
| download | dotfiles-3ecdf5700e3ae53027f8df69035487087cf94145.tar.gz | |
vimrc change org mode settings
| -rw-r--r-- | .config/nvim/init.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 2b7a56d..77f5cbb 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -254,8 +254,12 @@ require("pckr").add{ "nvim-orgmode/orgmode", config = function() require("orgmode").setup({ - org_agenda_files = "~/orgfiles/**/*", - org_default_notes_file = "~/orgfiles/index.org" + org_agenda_files = "~/orgfiles/*", + org_default_notes_file = "~/orgfiles/index.org", + org_adapt_indentation = false, + org_capture_templates = { + t = { description = 'Task', template = '\n* TODO %?\n %u' } + } }) end }, |
