From ae7b55ff7650160ed2b0fade12a6e79bc738e5e0 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Wed, 20 Sep 2023 12:17:08 +0200 Subject: [nvim (zk)] removed unused vaults --- config/essentials/nvim/lua/user/zk.lua | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'config/essentials/nvim/lua/user/zk.lua') diff --git a/config/essentials/nvim/lua/user/zk.lua b/config/essentials/nvim/lua/user/zk.lua index 41072a6..2c3d9b5 100644 --- a/config/essentials/nvim/lua/user/zk.lua +++ b/config/essentials/nvim/lua/user/zk.lua @@ -45,21 +45,6 @@ require('telekasten').setup({ template_new_note = home .. "/" .. "templates/new_note.md", new_note_filename = "title", }, - SoftwareDesign = { - home = home .. "/" .. "SoftwareDesign", - 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", - }, - NetworkEssentials = { - home = home .. "/" .. "NetworkEssentials", - template_new_note = home .. "/" .. "templates/new_note.md", - new_note_filename = "title", - }, C = { home = home .. "/" .. "C", template_new_note = home .. "/" .. "templates/new_note.md", -- cgit v1.2.3 From 149770ce67e3f3c928aefb8e7439473027e0b743 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Wed, 20 Sep 2023 12:18:13 +0200 Subject: [nvim (zk)] added new vaults --- config/essentials/nvim/lua/user/zk.lua | 40 +++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 5 deletions(-) (limited to 'config/essentials/nvim/lua/user/zk.lua') 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", + }, } }) -- cgit v1.2.3