Disable nvim transparency if using neovide

This commit is contained in:
Evie Litherland-Smith 2023-05-04 06:36:52 +01:00
parent 05f294c9f0
commit 3ebcde7e09

View file

@ -1,4 +1,4 @@
return { local M = {
flavour = "macchiato", flavour = "macchiato",
term_colors = true, term_colors = true,
transparent_background = true, transparent_background = true,
@ -33,3 +33,9 @@ return {
which_key = true, which_key = true,
}, },
} }
if vim.g.neovide then
M.transparent_background = false
end
return M