2023-03-09 19:42:41 +08:00
|
|
|
return function(opts)
|
|
|
|
local M = require('Trans')
|
|
|
|
if opts then
|
|
|
|
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
|
|
|
|
end
|
2023-03-10 11:23:22 +08:00
|
|
|
|
2023-03-09 19:42:41 +08:00
|
|
|
local set_hl = vim.api.nvim_set_hl
|
2023-03-10 11:23:22 +08:00
|
|
|
local hls = require('Trans.style.theme')[M.conf.theme]
|
2023-03-09 19:42:41 +08:00
|
|
|
for hl, opt in pairs(hls) do
|
|
|
|
set_hl(0, hl, opt)
|
|
|
|
end
|
|
|
|
end
|