diff options
-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", + }, } }) |