Add jj/kitty/nvim/opencode/paru/fish/yazi/jjui
This commit is contained in:
24
nvim/files/lua/plugins/context.lua
Normal file
24
nvim/files/lua/plugins/context.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user