11 lines
246 B
Lua
11 lines
246 B
Lua
local M = {}
|
|
local core = require('colorini.core')
|
|
local highlights = require('colorini.highlights')
|
|
|
|
function M.setup(base)
|
|
local colors = core.get_colors()
|
|
vim.opt.termguicolors = true
|
|
highlights.highlight_all(colors, base)
|
|
end
|
|
|
|
return M
|