14 lines
188 B
Lua
14 lines
188 B
Lua
|
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
|