From 4c70d0317b782440ced2a17b49477326e1301088 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Fri, 11 Aug 2023 12:46:57 +0300 Subject: [PATCH] Adjusted `scrolloff` --- lua/solo/options.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/solo/options.lua b/lua/solo/options.lua index 968eef2..979ea6b 100644 --- a/lua/solo/options.lua +++ b/lua/solo/options.lua @@ -9,7 +9,8 @@ local options = { incsearch = true, ignorecase = true, -- ignore case in search patterns mouse = "a", -- allow the mouse to be used in neovim - pumheight = 10, -- pop up menu height showmode = false, -- we don't need to see things like -- INSERT -- anymore + pumheight = 10, -- pop up menu height, + showmode = false, -- we don't need to see things like -- INSERT -- anymore showtabline = 0, -- disable tabs smartcase = true, -- smart case smartindent = true, -- make indenting smarter again @@ -35,8 +36,8 @@ local options = { numberwidth = 4, -- set number column width to 4 {default 4} signcolumn = "yes", -- always show the sign column, otherwise it would shift the text each time wrap = false, -- display lines as one long line - scrolloff = 8, -- is one of my fav - sidescrolloff = 8, + scrolloff = 10, -- is one of my fav + sidescrolloff = 10, guifont = "JetBrainsMono NF:h11", -- the font used in graphical neovim applications spell = false, foldmethod = "manual",