Trans.nvim/lua/Trans/conf/default.lua

116 lines
2.5 KiB
Lua
Raw Normal View History

2023-01-05 16:24:50 +08:00
local M = {}
M.conf = {
style = {
ui = {
2023-01-05 16:24:50 +08:00
input = 'float',
2023-01-09 18:57:20 +08:00
normal = 'cursor',
2023-01-05 16:24:50 +08:00
select = 'cursor'
},
window = {
2023-01-05 16:24:50 +08:00
cursor = {
border = 'rounded',
width = 30,
height = 30,
},
float = {
border = 'rounded',
2023-01-09 21:30:16 +08:00
width = 0.9,
height = 0.8,
2023-01-05 16:24:50 +08:00
},
-- NOTE :如果你想限制某个组件的行数,可以设置 (名称与order相同)
-- Example:
-- limit = {
-- En = 1, -- 只显示第一行,(一般为最广泛的释义)
-- },
limit = nil,
2023-01-05 16:24:50 +08:00
},
},
order = {
offline = {
'Title',
2023-01-09 23:20:56 +08:00
-- 'Tag',
-- 'Pos',
-- 'Exchange',
-- 'Translation',
-- 'Definition',
},
-- online = {
-- -- TODO
-- },
},
2023-01-05 16:24:50 +08:00
ui = {
highlight = {
2023-01-05 16:24:50 +08:00
TransWord = {
fg = '#7ee787',
bold = true,
},
TransPhonetic = {
fg = '#8b949e',
},
TransRef = {
fg = '#75beff',
bold = true,
},
TransTag = {
fg = '#e5c07b',
},
TransExchange = {
link = 'TransTag',
},
TransPos = {
link = 'TransTag',
},
2023-01-09 23:20:56 +08:00
TransTranslation = {
2023-01-05 16:24:50 +08:00
link = 'TransWord',
},
2023-01-09 23:20:56 +08:00
TransDefinition = {
2023-01-05 16:24:50 +08:00
fg = '#bc8cff',
},
},
icon = {
star = '',
isOxford = '',
notOxford = ''
},
display = {
phnoetic = true,
collins_star = true,
oxford = true,
-- TODO
-- history = false,
},
},
base = {
db_path = '$HOME/.vim/dict/ultimate.db',
auto_close = true,
engine = {
-- TODO
2023-01-09 21:30:16 +08:00
'local',
}
2023-01-05 16:24:50 +08:00
},
-- map = {
-- -- TODO
-- },
2023-01-09 15:37:58 +08:00
-- history = {
-- -- TOOD
-- }
2023-01-05 16:24:50 +08:00
-- TODO add online translate engine
-- online_search = {
-- enable = false,
-- engine = {},
-- }
-- TODO register word
}
-- INFO :加载的规则 [LuaRule]
M.replace_rules = {
'order.*',
'ui.highlight.*',
}
2023-01-09 18:57:20 +08:00
2023-01-05 16:24:50 +08:00
return M