format with stylua

This commit is contained in:
Michael Chris Lopez
2021-08-20 16:05:43 +08:00
parent 7a4d201702
commit 635bd353c0
2 changed files with 200 additions and 196 deletions

1
.stylua.toml Normal file
View File

@@ -0,0 +1 @@
no_call_parentheses = true

View File

@@ -42,8 +42,12 @@
-- --
-- `:lua require('lush').ify()` -- `:lua require('lush').ify()`
local lush = require('lush') local lush = require "lush"
local hsl = lush.hsl local hsl = lush.hsluv
local sand = hsl(208, 80, 80)
local sea_crest = hsl(208, 90, 30)
local sea_deep = hsl(208, 90, 10) -- the integers used here.
local theme = lush(function() local theme = lush(function()
return { return {
@@ -260,7 +264,6 @@ local theme = lush(function()
-- TSTitle { }; -- Text that is part of a title. -- TSTitle { }; -- Text that is part of a title.
-- TSLiteral { }; -- Literal text. -- TSLiteral { }; -- Literal text.
-- TSURI { }; -- Any URI like a link or email. -- TSURI { }; -- Any URI like a link or email.
} }
end) end)