fix: change default winblend for floating window to 0 (#167)

This commit is contained in:
Steven Arcangeli 2023-09-01 13:51:58 -07:00
parent c12a12c34d
commit 7033d52db0
3 changed files with 3 additions and 3 deletions

View file

@ -203,7 +203,7 @@ require("oil").setup({
max_height = 0,
border = "rounded",
win_options = {
winblend = 10,
winblend = 0,
},
-- This is the config that will be passed to nvim_open_win.
-- Change values here to customize the layout

View file

@ -94,7 +94,7 @@ OPTIONS *oil-option
max_height = 0,
border = "rounded",
win_options = {
winblend = 10,
winblend = 0,
},
-- This is the config that will be passed to nvim_open_win.
-- Change values here to customize the layout

View file

@ -79,7 +79,7 @@ local default_config = {
max_height = 0,
border = "rounded",
win_options = {
winblend = 10,
winblend = 0,
},
-- This is the config that will be passed to nvim_open_win.
-- Change values here to customize the layout