stylua added rule

This commit is contained in:
2026-06-20 03:44:26 +02:00
parent 907b234eb7
commit 6fb33b02cd
13 changed files with 154 additions and 145 deletions
+2 -6
View File
@@ -1,12 +1,8 @@
if not vim.F then
vim.F = {}
end
if not vim.F then vim.F = {} end
if not vim.F.if_nil and not vim.nonnil then
vim.F.if_nil = function(value, default)
if value == nil then
return default
end
if value == nil then return default end
return value
end
end