2022-12-17 20:51:22 +08:00
|
|
|
local M = {}
|
2022-12-17 16:07:27 +08:00
|
|
|
|
2022-12-17 20:51:22 +08:00
|
|
|
-- NOTE:
|
|
|
|
-- Style:
|
|
|
|
-- [minimal]: one line with '/'
|
|
|
|
-- [default]:
|
|
|
|
-- [full]: show all description in different lines
|
|
|
|
-- TODO: other style
|
|
|
|
|
2022-12-17 23:33:21 +08:00
|
|
|
M.conf = require("Trans.conf")
|
|
|
|
function M.setup(conf)
|
2022-12-20 12:05:36 +08:00
|
|
|
if conf.display then
|
|
|
|
conf.display = vim.tbl_extend('force', M.conf.display, conf.display)
|
|
|
|
end
|
|
|
|
|
|
|
|
if conf.icon then
|
|
|
|
conf.icon = vim.tbl_extend('force', M.conf.icon, conf.icon)
|
|
|
|
end
|
|
|
|
|
2022-12-17 23:33:21 +08:00
|
|
|
M.conf = vim.tbl_extend('force', M.conf, conf)
|
|
|
|
require("Trans.setup")
|
|
|
|
end
|
2022-12-17 20:51:22 +08:00
|
|
|
|
2022-12-17 23:33:21 +08:00
|
|
|
M.db = require("sqlite.db")
|
|
|
|
M.dict = M.db:open(M.conf.db_path)
|
2022-12-17 16:07:27 +08:00
|
|
|
|
|
|
|
return M
|