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

87 lines
2.2 KiB
Lua
Raw Normal View History

local Trans = require('Trans')
2023-03-12 09:56:31 +08:00
local function set_strategy_opts(conf)
local define = Trans.define
2023-03-12 09:56:31 +08:00
local all_modes = define.modes
local all_backends = define.backends
2023-03-11 11:32:13 +08:00
2023-03-12 09:56:31 +08:00
local function parse_backend(backend)
if type(backend) == 'string' then
return backend == '*' and all_backends or { backend }
end
return backend
2023-03-11 11:32:13 +08:00
end
local default_strategy = conf.strategy.default
default_strategy.backend = parse_backend(default_strategy.backend)
2023-03-12 09:56:31 +08:00
local meta = {
__index = function(tbl, key)
tbl[key] = default_strategy[key]
2023-03-12 09:56:31 +08:00
return tbl[key]
end
}
local strategy = conf.strategy
2023-03-12 09:56:31 +08:00
for _, mode in ipairs(all_modes) do
strategy[mode] = setmetatable(strategy[mode] or {}, meta)
if type(strategy[mode].backend) == 'string' then
strategy[mode].backend = parse_backend(strategy[mode].backend)
2023-03-11 11:32:13 +08:00
end
end
end
2023-03-12 09:56:31 +08:00
local function set_frontend_opts(conf)
local all_frontends = Trans.define.frontends
2023-03-12 09:56:31 +08:00
local global_frontend_opts = conf.frontend
local meta = {
__index = function(tbl, key)
tbl[key] = global_frontend_opts[key]
return tbl[key]
end
}
for _, frontend in ipairs(all_frontends) do
local frontend_opts = global_frontend_opts[frontend]
if not frontend_opts then
global_frontend_opts[frontend] = setmetatable({}, meta)
else
setmetatable(frontend_opts, meta)
end
end
end
2023-03-11 11:32:13 +08:00
local function define_highlights(conf)
2023-03-12 09:56:31 +08:00
local set_hl = vim.api.nvim_set_hl
local highlights = Trans.style.theme[conf.style.theme]
2023-03-11 11:32:13 +08:00
for hl, opt in pairs(highlights) do
set_hl(0, hl, opt)
end
end
2023-03-12 21:33:00 +08:00
2023-03-14 18:17:07 +08:00
---@alias TransMode
---|'normal' # Normal mode
---|'visual' # Visual mode
---|'input' # Input mode
---@class Trans
---@field setup fun(opts: { mode: string, mode: TransMode })
2023-03-09 19:42:41 +08:00
return function(opts)
if opts then
Trans.conf = vim.tbl_deep_extend('force', Trans.conf, opts)
2023-03-09 19:42:41 +08:00
end
local conf = Trans.conf
2023-03-12 09:56:31 +08:00
conf.dir = vim.fn.expand(conf.dir)
2023-03-12 09:56:31 +08:00
set_strategy_opts(conf)
set_frontend_opts(conf)
2023-03-11 11:32:13 +08:00
define_highlights(conf)
2023-03-09 19:42:41 +08:00
end