LunarVim/lua/spacegray/util.lua
2021-07-12 12:51:49 -04:00

22 lines
No EOL
542 B
Lua

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 cmd = table.concat({
"highlight", group, bg, fg, style
}, " ")
vim.api.nvim_command(cmd)
end
function M.initialise(skeleton)
for group, properties in pairs(skeleton) do
highlight(group, properties)
end
end
return M