From 8f4cfc7926d5a7f54714d3c082dd43fe61fc4c32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20L=C3=BCdecke?= Date: Mon, 21 Apr 2025 11:46:23 +0200 Subject: [PATCH] Winborder set to rounded --- lua/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/options.lua b/lua/options.lua index 3c59759..796a907 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -25,6 +25,7 @@ vim.opt.splitright = true -- open new horizontal splits right vim.opt.termguicolors = true -- enable 24-bit RGB color in the TUI vim.opt.showmode = false -- we are experienced, wo don't need the "-- INSERT --" mode hint vim.opt.showtabline = 0 -- never show top line with tabs, not used anyways +vim.opt.winborder = 'rounded' -- UI borders are rounded -- Searching vim.opt.incsearch = true -- search as characters are entered