feat: define some feature todo
This commit is contained in:
parent
0c02a258e9
commit
5cf91a5a17
@ -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 = {
|
display = {
|
||||||
style = '',
|
style = 'default',
|
||||||
phnoetic = true,
|
phnoetic = true,
|
||||||
collins_star = true,
|
collins_star = true,
|
||||||
tag = true,
|
tag = true,
|
||||||
oxford = 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)
|
function M:setup(conf)
|
||||||
M.config = vim.tbl_extend('force', default_config, conf)
|
self.config = vim.tbl_extend('force', default_conf, conf)
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
6
lua/Trans/query.lua
Normal file
6
lua/Trans/query.lua
Normal file
@ -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)
|
Loading…
x
Reference in New Issue
Block a user