summaryrefslogtreecommitdiff
path: root/lua/onedarker/util.lua
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2021-08-30 00:59:23 -0400
committerChristian Chiarulli <[email protected]>2021-08-30 00:59:23 -0400
commit0f458a04688d71d194fc104351f8cda5aff936af (patch)
treed95ebf0904c70584eb0576c91c5c74515e0ca4a5 /lua/onedarker/util.lua
parent5ede0c906ab174678e39237fe55f24bc5ae99348 (diff)
onedarker colorscheme
Diffstat (limited to 'lua/onedarker/util.lua')
-rw-r--r--lua/onedarker/util.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/lua/onedarker/util.lua b/lua/onedarker/util.lua
new file mode 100644
index 00000000..dbac18a2
--- /dev/null
+++ b/lua/onedarker/util.lua
@@ -0,0 +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 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