You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
267 B
Lua

-- allows for toggling of background
function ToggleTransparent()
Transparent = not Transparent
if Transparent then
vim.cmd("hi Normal ctermbg=NONE")
else
-- 234 is hybrid dark bg color
vim.cmd("hi Normal ctermbg=234")
end
end