try and make everything confined to 80chars

This commit is contained in:
2025-05-18 22:32:28 -04:00
parent d0155fcc7c
commit f9311db805
6 changed files with 38 additions and 20 deletions

View File

@ -56,7 +56,8 @@ return { "L3MON4D3/LuaSnip",
end)
-- load all snippets from snippet directory
for _, file in ipairs(vim.api.nvim_get_runtime_file("lua/snippets/*.lua", true)) do
for _, file in ipairs(vim.api.nvim_get_runtime_file("lua/snippets/*.lua",
true)) do
local fn = file:gsub("^.*/", ""):gsub("%.lua$", "")
local ret = misc.include("snippets."..fn)
if type(ret) ~= "boolean" then