dotfiles from arch

This commit is contained in:
2025-09-28 11:39:12 +02:00
parent 75885729cd
commit d1c6923bbb
1358 changed files with 575835 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
-- if this file exists, then change setting `Lua.runtime.plugin`
-- see https://luals.github.io/wiki/plugins
function OnSetText(uri, text)
local diffs = {}
for start, finish in text:gmatch '()pairs()' do
diffs[#diffs+1] = {
start = start,
finish = finish - 1,
text = 'safepairs'
}
end
return diffs
end