add: update config

This commit is contained in:
asep.komarudin 2024-05-06 08:11:07 +07:00
parent 3a93cb9d58
commit be7f819532
7 changed files with 43 additions and 39 deletions

View file

@ -4,7 +4,7 @@ return {
"olimorris/onedarkpro.nvim",
priority = 1000, -- Ensure it loads first
config = function()
local is_transparent = false
local is_transparent = true
require("onedarkpro").setup({
styles = {
types = "NONE",
@ -116,6 +116,8 @@ return {
TermCursor = { bg = "${fg}" },
TSRainbowRed = { fg = "${cyan}" },
TSRainbowCyan = { fg = "${red}" },
NonText = { fg = "${fg}", bg = is_transparent and "NONE" or "#30333d" },
MiniIndentscopeSymbol = { fg = "${cyan}" },
},
})
end,