flexoki-neovim/lua/flexoki/highlights/_template.lua

14 lines
188 B
Lua
Raw Permalink Normal View History

local palette = require('flexoki.palette')
local M = {}
M.groups = function()
local c = palette.palette()
--- @type table<string, vim.api.keyset.highlight>
return {
}
end
return M