style: fixed formatting

This commit is contained in:
Folke Lemaitre
2022-09-05 12:06:20 +02:00
parent 941f7a87ac
commit f2a76d28a2
4 changed files with 53 additions and 53 deletions

View File

@@ -4,8 +4,8 @@ local M = {}
-- @param colors ColorScheme
function M.generate(colors)
local xfceterm = util.template(
[[
local xfceterm = util.template(
[[
[Scheme]
Name=TokyoNight Colors
ColorBackground=${bg}
@@ -16,9 +16,9 @@ ColorSelection=${fg}
ColorPalette=${black};${red};${green};${yellow};${blue};${magenta};${cyan};${fg_dark};${terminal_black};${red};${green};${yellow};${blue};${magenta};${cyan};${fg}
]],
colors
)
return xfceterm
colors
)
return xfceterm
end
return M