Disable nvim transparency if using neovide
This commit is contained in:
parent
05f294c9f0
commit
3ebcde7e09
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue