From 7033d52db012666b85504fe9a678939e49bc14b7 Mon Sep 17 00:00:00 2001 From: Steven Arcangeli Date: Fri, 1 Sep 2023 13:51:58 -0700 Subject: [PATCH] fix: change default winblend for floating window to 0 (#167) --- README.md | 2 +- doc/oil.txt | 2 +- lua/oil/config.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c590fd54..3c36d075 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/doc/oil.txt b/doc/oil.txt index b04be3ff..f06f8ffe 100644 --- a/doc/oil.txt +++ b/doc/oil.txt @@ -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 diff --git a/lua/oil/config.lua b/lua/oil/config.lua index a7163d42..f66c2a9f 100644 --- a/lua/oil/config.lua +++ b/lua/oil/config.lua @@ -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