my dotfiles for arch
1return {
2 "nvim-treesitter/nvim-treesitter-context",
3 config = function()
4 local c = _G.matugen_palette
5 or {
6 color0 = "#191724",
7 color1 = "#eb6f92",
8 color2 = "#31748f",
9 color3 = "#f6c177",
10 color4 = "#9ccfd8",
11 color5 = "#c4a7e7",
12 color6 = "#ebbcba",
13 color7 = "#908caa",
14 color8 = "#26233a",
15 color15 = "#e0def4",
16 }
17
18 local color = require("util.color")
19 vim.api.nvim_set_hl(0, "TreesitterContext", {
20 bg = color.blend(c.color15, c.color0, 0.8),
21 ctermbg = "blue",
22 })
23 end,
24}