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

106 lines
2.6 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
2023-03-12 09:56:31 +08:00
local global_strategy = conf.strategy
global_strategy.backend = parse_backend(global_strategy.backend)
2023-03-11 11:32:13 +08:00
2023-03-12 09:56:31 +08:00
local meta = {
__index = function(tbl, key)
tbl[key] = global_strategy[key]
return tbl[key]
end
}
for _, mode in ipairs(all_modes) do
if not global_strategy[mode] then
global_strategy[mode] = setmetatable({}, meta)
else
if mode.backend then
mode.backend = parse_backend(mode.backend)
end
setmetatable(mode, meta)
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
local function define_keymaps(conf)
local set = vim.keymap.set
local opts = { silent = true, expr = true }
for _, name in ipairs(Trans.define.frontends) do
for action, key in pairs(conf.frontend[name].keymap) do
set('n', key, function()
local frontend = Trans.frontend[name]
if frontend.is_available() then
frontend.actions[action]()
else
return key
end
end, opts)
end
end
end
2023-03-12 09:56:31 +08:00
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-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)
define_keymaps(conf)
2023-03-11 11:32:13 +08:00
define_highlights(conf)
2023-03-09 19:42:41 +08:00
end