27 lines
775 B
Lua
27 lines
775 B
Lua
local M = {}
|
|
|
|
M.hlgroup = {
|
|
word = 'TransWord',
|
|
phonetic = 'TransPhonetic',
|
|
ref = 'TransRef',
|
|
tag = 'TransTag',
|
|
exchange = 'TransExchange',
|
|
pos = 'TransPos',
|
|
zh = 'TransZh',
|
|
en = 'TransEn',
|
|
}
|
|
|
|
function M.set_hl()
|
|
local set_hl = vim.api.nvim_set_hl
|
|
set_hl(0, M.hlgroup.word, { fg = '#7ee787', bold = true })
|
|
set_hl(0, M.hlgroup.phonetic, { fg = '#8b949e' })
|
|
set_hl(0, M.hlgroup.ref, { fg = '#75beff', bold = true })
|
|
set_hl(0, M.hlgroup.tag, { fg = '#e5c07b' })
|
|
set_hl(0, M.hlgroup.pos, { link = M.hlgroup.tag })
|
|
set_hl(0, M.hlgroup.exchange, { link = M.hlgroup.tag })
|
|
set_hl(0, M.hlgroup.zh, { link = M.hlgroup.word })
|
|
set_hl(0, M.hlgroup.en, { fg = '#bc8cff' })
|
|
end
|
|
|
|
return M
|