From 8f9ad135575d8de952264b7491f00b85738252c3 Mon Sep 17 00:00:00 2001 From: Tony Miller Date: Fri, 22 Aug 2025 12:30:58 +1000 Subject: [PATCH] little update on nvim lua tabs --- .config/nvim/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 07a15d2..214edff 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -5,7 +5,7 @@ local function ensure_plugin(category, name, git_url, opts) opts = opts or {} local pack_path = os.getenv("HOME") .. "/.config/nvim/pack/" .. category .. "/" .. (opts.opt and "opt" or "start") local plugin_path = pack_path .. "/" .. name - + -- Create pack directory if it doesn't exist vim.fn.system("mkdir -p " .. pack_path) @@ -289,4 +289,4 @@ keys.set("n", "", "k", {desc = "Window up"}) keys.set("n", "", "l", {desc = "Window right"}) -- Clear search highlighting -keys.set("n", "nh", ":nohl", {desc = "Clear highlights"}) \ No newline at end of file +keys.set("n", "nh", ":nohl", {desc = "Clear highlights"})