Trans.nvim/lua/Trans/init.lua

62 lines
1.2 KiB
Lua
Raw Normal View History

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
local default_conf =
{
2022-12-17 16:07:27 +08:00
display = {
2022-12-17 20:51:22 +08:00
style = 'default',
2022-12-17 16:07:27 +08:00
phnoetic = true,
collins_star = true,
tag = true,
oxford = true,
2022-12-17 20:51:22 +08:00
-- TODO: frequency
-- frequency = false,
history = false,
},
default_keymap = true,
map = {
},
view = {
-- TODO: style: buffer | cursor | window
-- style = 'buffer',
-- buffer_pos = 'bottom', -- only works when view.style == 'buffer'
2022-12-17 16:07:27 +08:00
},
2022-12-17 20:51:22 +08:00
db_path = '/home/zoran/project/neovim/ecdict-sqlite-28/stardict.db', -- FIXME: change the path
-- TODO: async process
async = false,
-- TODO: add online translate engine
-- online_search = {
-- enable = false,
-- engine = {},
-- }
-- TODO: precise match or return closest match result
-- precise_match = true,
-- TODO: leamma search
-- leamma = false,
-- TODO: register word
2022-12-17 16:07:27 +08:00
}
2022-12-17 20:51:22 +08:00
M.conf = default_conf
2022-12-17 16:07:27 +08:00
2022-12-17 20:51:22 +08:00
function M:setup(conf)
self.config = vim.tbl_extend('force', default_conf, conf)
2022-12-17 16:07:27 +08:00
end
return M