chore(fmt): stylua

This commit is contained in:
hedy
2023-11-22 21:17:40 +08:00
parent ec4f727631
commit 8c5c69feb2

View File

@@ -39,16 +39,12 @@ function M.setup_highlights()
local cline_hl = get_hl_by_name('CursorLine') local cline_hl = get_hl_by_name('CursorLine')
local string_hl = get_hl_by_name('String') local string_hl = get_hl_by_name('String')
vim.api.nvim_set_hl( vim.api.nvim_set_hl(0, 'OutlineCurrent', {
0,
'OutlineCurrent',
{
bg = cline_hl.bg, bg = cline_hl.bg,
fg = string_hl.fg, fg = string_hl.fg,
ctermbg = cline_hl.ctermbg, ctermbg = cline_hl.ctermbg,
ctermfg = string_hl.ctermfg, ctermfg = string_hl.ctermfg,
} })
)
end end
-- Only inherit fg for these highlights because we do not want the other -- Only inherit fg for these highlights because we do not want the other