summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/dark/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/no-clown-fiesta/dark/util.lua')
-rw-r--r--lua/no-clown-fiesta/dark/util.lua25
1 files changed, 0 insertions, 25 deletions
diff --git a/lua/no-clown-fiesta/dark/util.lua b/lua/no-clown-fiesta/dark/util.lua
deleted file mode 100644
index dbac18a..0000000
--- a/lua/no-clown-fiesta/dark/util.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-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