Trans.nvim/lua/Trans/init.lua
2022-12-17 20:51:22 +08:00

62 lines
1.2 KiB
Lua

local M = {}
-- NOTE:
-- Style:
-- [minimal]: one line with '/'
-- [default]:
-- [full]: show all description in different lines
-- TODO: other style
local default_conf =
{
display = {
style = 'default',
phnoetic = true,
collins_star = true,
tag = true,
oxford = true,
-- 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'
},
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
}
M.conf = default_conf
function M:setup(conf)
self.config = vim.tbl_extend('force', default_conf, conf)
end
return M