feat: init the repository
This commit is contained in:
commit
0c02a258e9
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
20
lua/Trans/init.lua
Normal file
20
lua/Trans/init.lua
Normal 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
|
Loading…
x
Reference in New Issue
Block a user