aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-31 15:26:56 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-31 15:26:56 -0500
commit98aae61ebf7834869ceced233f46653325f9586c (patch)
treed39e39459e602d7251855fb4f724c9c1af180f4c /nvim
parentd4aaec6f29dc3d5c496df7d74035a3a33fa2b0fc (diff)
fix(nvim): disable pumblend/winblend due to bug(?)
The bug results in a transparent black background. I assume this should instead be blending the current background color. Ref: https://github.com/neovim/neovim/issues/18576
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/options.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/options.lua b/nvim/.config/nvim/lua/tobyvin/options.lua
index 85653ec..b093216 100644
--- a/nvim/.config/nvim/lua/tobyvin/options.lua
+++ b/nvim/.config/nvim/lua/tobyvin/options.lua
@@ -22,7 +22,6 @@ vim.opt.jumpoptions:append("stack")
vim.opt.linebreak = true
vim.opt.mouse = "a"
vim.opt.number = true
-vim.opt.pumblend = 10
vim.opt.pumheight = 10
vim.opt.relativenumber = true
vim.opt.scrolloff = 10