From bb776e016e29fd214c5b3731a856ed19e745f14c Mon Sep 17 00:00:00 2001 From: Flavio Oliveira <61277545+fl4viooliveira@users.noreply.github.com> Date: Sun, 29 Oct 2023 12:11:34 +0000 Subject: [PATCH] Visual Padding --- init.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.lua b/init.lua index a7667ddc..2772a03c 100644 --- a/init.lua +++ b/init.lua @@ -271,6 +271,11 @@ vim.o.completeopt = 'menuone,noselect' -- NOTE: You should make sure your terminal supports this vim.o.termguicolors = true +-- Enhancement: Visual Padding in Neovim +-- The following settings are used to create a visual "padding" effect around the text arena +vim.wo.number = true -- Enable line numbering for a left padding effect +vim.wo.signcolumn = 'yes' -- Ensure the sign column is always present for consistent padding + -- [[ Basic Keymaps ]] -- Keymaps for better default experience