feat: init the repository

This commit is contained in:
JuanZoran 2022-12-17 16:07:27 +08:00
commit 0c02a258e9
2 changed files with 20 additions and 0 deletions

0
.gitignore vendored Normal file
View File

20
lua/Trans/init.lua Normal file
View File

@ -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