From 03a2d268f0265d86b896b7a5532add66414ca082 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 13 Aug 2024 19:23:35 +0200 Subject: [PATCH] nvim: blend popup and windows with background --- nvim/lua/config/options.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua index fd77e2b..368bad2 100644 --- a/nvim/lua/config/options.lua +++ b/nvim/lua/config/options.lua @@ -23,16 +23,23 @@ set.updatetime = 50 -- Displays which-key popup sooner set.timeoutlen = 50 + +-- +-- UI +-- + -- disable mode in the command line, because i use lualine set.showmode = false +set.winblend = 5 -- how much floating windows should blend with background. +set.pumblend = 5 -- popup blend +set.pumheight = 15 -- popup height -- -- Editor settings -- set.wrap = false -- Disable line wrap -set.pumheight = 20 set.laststatus = 3 set.splitkeep = "screen" set.scrolloff = 10