Dotfiles/vim/theme/cyberqueer.nvim/lua/cyberdream/extensions/treesittercontext.lua

16 lines
405 B
Lua

local M = {}
local util = require("cyberdream.util")
--- Get extension configuration
--- @param opts Config
--- @param t CyberdreamPalette
function M.get(opts, t)
opts = opts or {}
local highlights = {
TreeSitterContext = { bg = util.blend(t.bg_alt, t.cyan, 0.9) },
TreeSitterContextLineNumber = { fg = util.blend(t.bg_highlight, t.fg) },
}
return highlights
end
return M