From ba77691fb3aa05cd3b3b6a1038196f974b391de6 Mon Sep 17 00:00:00 2001 From: Pojok Code Date: Tue, 5 Nov 2024 08:05:42 +0700 Subject: [PATCH] fix: evatheme indent scupe color --- lua/pcode/plugins/theme/evatheme.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lua/pcode/plugins/theme/evatheme.lua b/lua/pcode/plugins/theme/evatheme.lua index 372b37e..72bac35 100644 --- a/lua/pcode/plugins/theme/evatheme.lua +++ b/lua/pcode/plugins/theme/evatheme.lua @@ -3,7 +3,14 @@ return { lazy = false, priority = 1000, config = function() - require("Eva-Theme").setup({}) + require("Eva-Theme").setup({ + override_highlight = { + dark = { + ["MiniIndentscopeSymbol"] = { fg = "#FF9070" }, + ["MiniIndentscopeSymbolOff"] = { fg = "#FF9070" }, + }, + }, + }) local color = {} if pcode.localcode then color = require("Eva-Theme.palette").dark_base.punctuation @@ -43,6 +50,8 @@ return { hi(0, "CursorColumn", { bg = color.dark, fg = "#838FA7" }) hi(0, "TermCursor", { bg = "#FF9070", fg = color.dark }) hi(0, "TermCursorNC", { bg = "#FF9070", fg = color.dark }) + hi(0, "MiniIndentscopeSymbol", { fg = "#FF9070" }) + hi(0, "MiniIndentscopeSymbolOff", { fg = "#FF9070" }) end, }) end,