refactor(nvim): set cmdheight to 1

The current implementation of cmdheight = 0 is buggy as all hell
unfortunately. It looks very nice, but it's not ready for use. Will
check it out come Neovim 0.8 stabilization at the end of September.
This commit is contained in:
Price Hiller 2022-09-17 16:12:06 -05:00
parent f7cbb1e08f
commit b0e41f07d4

View File

@ -117,8 +117,8 @@ M.setup = function()
opt.modeline = true
opt.modelines = 5
-- Set command bar height to hide when not in use
opt.cmdheight = 0
-- Set command bar height
opt.cmdheight = 1
end
return M