new config trasnparent mode

This commit is contained in:
asep komarudin 2023-03-04 12:30:04 +07:00
parent 1a7a0a9ba0
commit 1bb9a4cfa2
5 changed files with 33 additions and 6 deletions

View file

@ -8,6 +8,12 @@ if data_exists then
else
colorscheme = "gruvbox-baby"
end
local transparent_mode = custom_ui.transparent_mode
if transparent_mode ~= nil then
if transparent_mode == 1 then
vim.g.gruvbox_baby_transparent_mode = 1
end
end
end
end
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)