Skip to content

Commit d37a76b

Browse files
committed
fix(ui): only enable backdrop when guicolors is set. Fixes #1387
1 parent 68941b7 commit d37a76b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/view/float.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function M:mount()
118118
self.buf = vim.api.nvim_create_buf(false, true)
119119
end
120120

121-
if self.opts.backdrop and self.opts.backdrop < 100 then
121+
if self.opts.backdrop and self.opts.backdrop < 100 and vim.o.termguicolors then
122122
self.backdrop_buf = vim.api.nvim_create_buf(false, true)
123123
self.backdrop_win = vim.api.nvim_open_win(self.backdrop_buf, false, {
124124
relative = "editor",

0 commit comments

Comments
 (0)