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"})