From ecf2107cb3070acefc47e984fbabe58275bdf436 Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Fri, 10 Mar 2023 22:06:43 +1030 Subject: [PATCH] updated zk link to be text rather than md link --- .config/nvim/lua/lazyvim/plugins/zk.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/lazyvim/plugins/zk.lua b/.config/nvim/lua/lazyvim/plugins/zk.lua index e39ee4e..9e6f7dc 100644 --- a/.config/nvim/lua/lazyvim/plugins/zk.lua +++ b/.config/nvim/lua/lazyvim/plugins/zk.lua @@ -18,7 +18,7 @@ return { end for _, note in ipairs(notes) do -- stylua: ignore - local nline = line:sub(0, pos) .. "[" .. note.title .. "]" .. "(" .. note.path .. ")" .. line:sub(pos + 1) + local nline = line:sub(0, pos) .. note.title .. " - " .. note.path .. line:sub(pos + 1) vim.api.nvim_set_current_line(nline) end end)