From 89a49ccc5d969418e17aff0523ecbc35c88572b7 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Wed, 15 Oct 2025 10:13:05 +0300 Subject: [PATCH] nvim: explicitly set winborder to empty string for now --- lua/crentist/set.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/crentist/set.lua b/lua/crentist/set.lua index d93ae3d..312ce1f 100644 --- a/lua/crentist/set.lua +++ b/lua/crentist/set.lua @@ -8,6 +8,8 @@ vim.opt.softtabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true +vim.o.winborder = '' + vim.opt.smartindent = true vim.opt.wrap = false