commit 0c02a258e97cc3e124e3d667c5c57f85c006d06a Author: JuanZoran <1430359574@qq.com> Date: Sat Dec 17 16:07:27 2022 +0800 feat: init the repository diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua new file mode 100644 index 0000000..fefa40a --- /dev/null +++ b/lua/Trans/init.lua @@ -0,0 +1,20 @@ +M = {} + +local default_config = { + display = { + style = '', + phnoetic = true, + collins_star = true, + tag = true, + oxford = true, + }, + default_cmd = true, +} + +M.config = default_config + +function M.setup(conf) + M.config = vim.tbl_extend('force', default_config, conf) +end + +return M