diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-14 21:35:43 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-14 21:35:43 +0100 |
commit | 2191de3666608e3eef2713771d8582c11c73e379 (patch) | |
tree | e36fe33f921da05e5a778e3c341c2b90087315ca /lua/no-clown-fiesta/util.lua | |
parent | 49daed66509b9c5850f42ed9188a363cdd5bc5b1 (diff) |
Format with stylua
Diffstat (limited to 'lua/no-clown-fiesta/util.lua')
-rw-r--r-- | lua/no-clown-fiesta/util.lua | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lua/no-clown-fiesta/util.lua b/lua/no-clown-fiesta/util.lua index dbac18a..07f71a2 100644 --- a/lua/no-clown-fiesta/util.lua +++ b/lua/no-clown-fiesta/util.lua @@ -1,25 +1,25 @@ local M = {} local function highlight(group, properties) - local bg = properties.bg == nil and "" or "guibg=" .. properties.bg - local fg = properties.fg == nil and "" or "guifg=" .. properties.fg - local style = properties.style == nil and "" or "gui=" .. properties.style + local bg = properties.bg == nil and "" or "guibg=" .. properties.bg + local fg = properties.fg == nil and "" or "guifg=" .. properties.fg + local style = properties.style == nil and "" or "gui=" .. properties.style - local cmd = table.concat({ - "highlight", - group, - bg, - fg, - style, - }, " ") + local cmd = table.concat({ + "highlight", + group, + bg, + fg, + style, + }, " ") - vim.api.nvim_command(cmd) + vim.api.nvim_command(cmd) end function M.initialise(skeleton) - for group, properties in pairs(skeleton) do - highlight(group, properties) - end + for group, properties in pairs(skeleton) do + highlight(group, properties) + end end return M |