refactor(nvim): disable lazy redraw

This commit is contained in:
Price Hiller 2022-10-14 15:54:05 -05:00
parent a556a6e50a
commit d6f8206d8c

View File

@ -75,8 +75,8 @@ M.setup = function()
-- Cursor line highlight
opt.cursorline = true
-- Lazy Redraw to Speed Up Macros
opt.lazyredraw = true
-- Disable lazy redraw to interact with plugins better
opt.lazyredraw = false
-- Spell Settings
opt.spelllang = { "en_us" }