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 -- Cursor line highlight
opt.cursorline = true opt.cursorline = true
-- Lazy Redraw to Speed Up Macros -- Disable lazy redraw to interact with plugins better
opt.lazyredraw = true opt.lazyredraw = false
-- Spell Settings -- Spell Settings
opt.spelllang = { "en_us" } opt.spelllang = { "en_us" }