From f097f4d3e0472d88c719d86e233781bb1572dae9 Mon Sep 17 00:00:00 2001 From: Job79 Date: Wed, 2 Sep 2026 20:08:15 +0200 Subject: [PATCH] feat: use rounded borders around popups --- plugin/10_options.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/10_options.lua b/plugin/10_options.lua index 1e7004f..b1316b2 100644 --- a/plugin/10_options.lua +++ b/plugin/10_options.lua @@ -18,6 +18,8 @@ vim.o.splitbelow = true -- Horizontal splits will be below vim.o.splitkeep = 'screen' -- Reduce scroll during window split vim.o.splitright = true -- Vertical splits will be to the right vim.o.wrap = false -- Don't visually wrap lines (toggle with \w) +vim.o.winborder = 'rounded' -- Use border in floating windows +vim.o.pumborder = 'rounded' -- Use border in popup menu vim.o.cmdheight = 0 -- Hide the command line when not in use vim.cmd('syntax off') -- Disable legacy syntax highlighting require("vim._core.ui2").enable({ -- Enable new ui (requires nightly)