mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2026-02-05 06:34:43 +01:00
22 lines
399 B
Lua
22 lines
399 B
Lua
vim.cmd("colorscheme rosepine")
|
|
local transparent_groups = {
|
|
"Normal",
|
|
"NormalNC",
|
|
"NormalFloat",
|
|
"VertSplit",
|
|
"StatusLine",
|
|
"StatusLineNC",
|
|
"TabLine",
|
|
"TabLineFill",
|
|
"TabLineSel",
|
|
"Pmenu",
|
|
"PmenuSel",
|
|
"PmenuSbar",
|
|
"PmenuThumb",
|
|
}
|
|
|
|
for _, group in ipairs(transparent_groups) do
|
|
vim.api.nvim_set_hl(0, group, { bg = "none" })
|
|
end
|
|
|
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|