From bbbf37e40e204e6b197226946c8b6d8331b13e16 Mon Sep 17 00:00:00 2001 From: fm39hz-laptop Date: Fri, 28 Jun 2024 14:37:33 +0700 Subject: [PATCH] fix: fix janky stutter with codeium - based on where the cursor is, if is near the eof, codeium will try to move cursor down - remove keep cursor to prevent it --- lua/config/options.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/config/options.lua b/lua/config/options.lua index 8da4819..dd0d507 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -5,5 +5,3 @@ vim.opt.swapfile = false vim.opt.backup = false vim.opt.writebackup = false vim.opt.spelllang = { "en", "cjk" } -vim.o.scrolloff = 3 -vim.o.scrolloff = vim.o.scrolloff == 3 and 999 or 3