From f9311db805dc29ed96b009c836231cd87b43b861 Mon Sep 17 00:00:00 2001 From: Squibid Date: Sun, 18 May 2025 22:32:28 -0400 Subject: try and make everything confined to 80chars --- init.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 053698e..d89096a 100644 --- a/init.lua +++ b/init.lua @@ -9,7 +9,8 @@ end -- bootstrap plugin manager local path = vim.fn.stdpath("data").."/site/pack/deps/opt/dep" if vim.fn.empty(vim.fn.glob(path)) > 0 then - vim.fn.system({ "git", "clone", "--depth=1", "https://git.squi.bid/dep", path }) + vim.fn.system({ "git", "clone", "--depth=1", "https://git.squi.bid/dep", + path }) end vim.cmd("packadd dep") @@ -32,8 +33,10 @@ require("dep") { -- aquire all plugin specs local plugs = {} - for _, file in ipairs(vim.api.nvim_get_runtime_file("lua/conf/plugins/*.lua", true)) do - local ret = misc.include("conf.plugins."..file:gsub("^.*/", ""):gsub("%.lua$", "")) + for _, file in ipairs(vim.api.nvim_get_runtime_file( + "lua/conf/plugins/*.lua", true)) do + local ret = misc.include("conf.plugins."..file:gsub("^.*/", + ""):gsub("%.lua$", "")) if type(ret) ~= "boolean" then plugs[#plugs + 1] = ret end -- cgit v1.2.1