mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
fix: evatheme indent scupe color
This commit is contained in:
parent
edd352519e
commit
ba77691fb3
1 changed files with 10 additions and 1 deletions
|
@ -3,7 +3,14 @@ return {
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
require("Eva-Theme").setup({})
|
require("Eva-Theme").setup({
|
||||||
|
override_highlight = {
|
||||||
|
dark = {
|
||||||
|
["MiniIndentscopeSymbol"] = { fg = "#FF9070" },
|
||||||
|
["MiniIndentscopeSymbolOff"] = { fg = "#FF9070" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
local color = {}
|
local color = {}
|
||||||
if pcode.localcode then
|
if pcode.localcode then
|
||||||
color = require("Eva-Theme.palette").dark_base.punctuation
|
color = require("Eva-Theme.palette").dark_base.punctuation
|
||||||
|
@ -43,6 +50,8 @@ return {
|
||||||
hi(0, "CursorColumn", { bg = color.dark, fg = "#838FA7" })
|
hi(0, "CursorColumn", { bg = color.dark, fg = "#838FA7" })
|
||||||
hi(0, "TermCursor", { bg = "#FF9070", fg = color.dark })
|
hi(0, "TermCursor", { bg = "#FF9070", fg = color.dark })
|
||||||
hi(0, "TermCursorNC", { 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,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue