feat(nvim): disable wrap

This commit is contained in:
Price Hiller 2022-06-30 11:34:26 -05:00
parent 3ab558df8e
commit 14ca59bb3b

View File

@ -106,6 +106,9 @@ M.setup = function()
-- Set command bar height to hide when not in use
opt.cmdheight = 0
-- Disable wrap
opt.wrap = false
end
return M