Add jj/kitty/nvim/opencode/paru/fish/yazi/jjui

This commit is contained in:
2026-02-19 22:27:46 +00:00
parent 774492f279
commit e55197517c
95 changed files with 10407 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
return {
"nvim-treesitter/nvim-treesitter-context",
config = function()
local c = _G.matugen_palette
or {
color0 = "#191724",
color1 = "#eb6f92",
color2 = "#31748f",
color3 = "#f6c177",
color4 = "#9ccfd8",
color5 = "#c4a7e7",
color6 = "#ebbcba",
color7 = "#908caa",
color8 = "#26233a",
color15 = "#e0def4",
}
local color = require("util.color")
vim.api.nvim_set_hl(0, "TreesitterContext", {
bg = color.blend(c.color15, c.color0, 0.8),
ctermbg = "blue",
})
end,
}