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
pull/98/head
fm39hz-laptop 2024-06-28 14:37:33 +07:00
parent 1ac9ed0ed8
commit bbbf37e40e
1 changed files with 0 additions and 2 deletions

View File

@ -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