HomeNeovim

Neovim

How to Make Neovim Cursor Quicker?

Set a lower `updatetime`: `vim.opt.updatetime = 100` Set a lower `timeoutlen`: `vim.opt.timeoutlen = 300` Disable cursorline if enabled: `vim.opt.cursorline = false` Reduce sign column overhead: `vim.opt.signcolumn = "yes"` Turn off mouse if...

Trending Today