summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/dark/util.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-09-20 20:50:03 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-09-20 20:50:03 +0200
commitc41627ea1d440f68d79d0d9ecd87574814ce1fae (patch)
treee21632c896238845f4f4460385a206070a9e2926 /.config/nvim/lua/dark/util.lua
parentf832cfd694e98ce27f76cc5370b8daf9cc634b19 (diff)
Update bg once again, cleaner dark
Diffstat (limited to '.config/nvim/lua/dark/util.lua')
-rw-r--r--.config/nvim/lua/dark/util.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/.config/nvim/lua/dark/util.lua b/.config/nvim/lua/dark/util.lua
new file mode 100644
index 0000000..dbac18a
--- /dev/null
+++ b/.config/nvim/lua/dark/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