Added some roam templates to be worked on
This commit is contained in:
parent
519d602d32
commit
af62504a48
1 changed files with 23 additions and 0 deletions
|
|
@ -17,6 +17,7 @@ require('orgmode').setup({
|
||||||
org_todo_keywords = { 'TODO(t)', 'NEXT(n)', '|', 'HOLD(h)', 'DONE(d)' }
|
org_todo_keywords = { 'TODO(t)', 'NEXT(n)', '|', 'HOLD(h)', 'DONE(d)' }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
require('cmp').setup({
|
require('cmp').setup({
|
||||||
sources = {
|
sources = {
|
||||||
{ name = 'orgmode' }
|
{ name = 'orgmode' }
|
||||||
|
|
@ -32,4 +33,26 @@ require("org-roam").setup({
|
||||||
-- "~/some/folder/*.org",
|
-- "~/some/folder/*.org",
|
||||||
-- "~/a/single/org_file.org",
|
-- "~/a/single/org_file.org",
|
||||||
--}
|
--}
|
||||||
|
templates = {
|
||||||
|
d = {
|
||||||
|
description = "default",
|
||||||
|
template = "%?",
|
||||||
|
target = "%<%Y%m%d%H%M%S>-%[slug].org",
|
||||||
|
},
|
||||||
|
f = {
|
||||||
|
description = "fleeting",
|
||||||
|
template = "#+filetags: fleeting\n\n%?",
|
||||||
|
target = "%<%Y%m%d%H%M%S>-%[slug].org",
|
||||||
|
},
|
||||||
|
l = {
|
||||||
|
description = "literature",
|
||||||
|
template = "#+filetags: literature\n\n * %?\n * Description\n\n * Notes\n - pg 1: ",
|
||||||
|
target = "%<%Y%m%d%H%M%S>-%[slug].org",
|
||||||
|
},
|
||||||
|
m = {
|
||||||
|
description = "main",
|
||||||
|
template = "%?",
|
||||||
|
target = "%<%Y%m%d%H%M%S>-%[slug].org",
|
||||||
|
},
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue