diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index fefa40a..ccde006 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -1,20 +1,61 @@ -M = {} +local M = {} -local default_config = { + +-- NOTE: +-- Style: +-- [minimal]: one line with '/' +-- [default]: +-- [full]: show all description in different lines +-- TODO: other style + + +local default_conf = +{ display = { - style = '', + style = 'default', phnoetic = true, collins_star = true, tag = true, oxford = true, + -- TODO: frequency + -- frequency = false, + history = false, }, - default_cmd = true, + 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.config = default_config +M.conf = default_conf -function M.setup(conf) - M.config = vim.tbl_extend('force', default_config, conf) +function M:setup(conf) + self.config = vim.tbl_extend('force', default_conf, conf) end return M diff --git a/lua/Trans/query.lua b/lua/Trans/query.lua new file mode 100644 index 0000000..6aba8b4 --- /dev/null +++ b/lua/Trans/query.lua @@ -0,0 +1,6 @@ +local sqlite = require("sqlite") +local conf = require('Trans').conf + +local path = conf.db_path + +local db = sqlite.new(conf.db_path)