From 8782cfe14d7a1016ec4a27aa302ec87ca5623108 Mon Sep 17 00:00:00 2001 From: Flavio Oliveira Date: Sun, 29 Oct 2023 17:01:05 +0000 Subject: [PATCH] Update init.lua To not scroll until the last line. --- init.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 2772a03c..14c44eb8 100644 --- a/init.lua +++ b/init.lua @@ -271,10 +271,7 @@ 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 +vim.wo.scrolloff = 8 -- [[ Basic Keymaps ]]