From 0c02a258e97cc3e124e3d667c5c57f85c006d06a Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Sat, 17 Dec 2022 16:07:27 +0800 Subject: [PATCH] feat: init the repository --- .gitignore | 0 lua/Trans/init.lua | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 lua/Trans/init.lua 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