Trans.nvim/lua/Trans/core/setup.lua

13 lines
312 B
Lua
Raw Normal View History

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-09 19:42:41 +08:00
local set_hl = vim.api.nvim_set_hl
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