diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-09-20 12:18:13 +0200 |
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-09-20 12:21:01 +0200 |
| commit | 149770ce67e3f3c928aefb8e7439473027e0b743 (patch) | |
| tree | 3d3776f2f4d684acf7c186e6e3f48001699ed5b2 | |
| parent | ae7b55ff7650160ed2b0fade12a6e79bc738e5e0 (diff) | |
[nvim (zk)] added new vaults
| -rw-r--r-- | config/essentials/nvim/lua/user/zk.lua | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/config/essentials/nvim/lua/user/zk.lua b/config/essentials/nvim/lua/user/zk.lua index 2c3d9b5..ee055d6 100644 --- a/config/essentials/nvim/lua/user/zk.lua +++ b/config/essentials/nvim/lua/user/zk.lua @@ -45,16 +45,46 @@ require('telekasten').setup({ template_new_note = home .. "/" .. "templates/new_note.md", new_note_filename = "title", }, - C = { - home = home .. "/" .. "C", + BusinessEnglish = { + home = home .. "/" .. "BusinessEnglish", + template_new_note = home .. "/" .. "templates/new_note.md", + new_note_filename = "title", + }, + DataEssentials = { + home = home .. "/" .. "DataEssentials", + template_new_note = home .. "/" .. "templates/new_note.md", + new_note_filename = "title", + }, + BusinessCommunication = { + home = home .. "/" .. "BusinessCommunication", + template_new_note = home .. "/" .. "templates/new_note.md", + new_note_filename = "title", + }, + AIEssentials = { + home = home .. "/" .. "AIEssentials", template_new_note = home .. "/" .. "templates/new_note.md", new_note_filename = "title", }, - businessIT = { - home = home .. "/" .. "businessIT", + dotNetEssentials = { + home = home .. "/" .. "dotNetEssentials", template_new_note = home .. "/" .. "templates/new_note.md", new_note_filename = "title", - } + }, + iTalent = { + home = home .. "/" .. "iTalent", + template_new_note = home .. "/" .. "templates/new_note.md", + new_note_filename = "title", + }, + SoftwareDesign2 = { + home = home .. "/" .. "SoftwareDesign2", + template_new_note = home .. "/" .. "templates/new_note.md", + new_note_filename = "title", + }, + C = { + home = home .. "/" .. "C", + template_new_note = home .. "/" .. "templates/new_note.md", + new_note_filename = "title", + }, } }) |
