diff options
author | Squibid <me@zacharyscheiman.com> | 2025-05-18 22:32:28 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2025-05-18 22:33:36 -0400 |
commit | f9311db805dc29ed96b009c836231cd87b43b861 (patch) | |
tree | 1f84fe270ac110b0122ce1fb6ea39bc67c4957c2 /init.lua | |
parent | d0155fcc7c734c1e3506e59cbb17ec3fb2a4b541 (diff) | |
download | nvim-f9311db805dc29ed96b009c836231cd87b43b861.tar.gz nvim-f9311db805dc29ed96b009c836231cd87b43b861.tar.bz2 nvim-f9311db805dc29ed96b009c836231cd87b43b861.zip |
try and make everything confined to 80chars
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 |