From b0e41f07d4e77c0627f072f80af1aabd2f3638c7 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 17 Sep 2022 16:12:06 -0500 Subject: [PATCH] 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. --- dots/.nvim-environments/primary/config/lua/core/options.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.nvim-environments/primary/config/lua/core/options.lua b/dots/.nvim-environments/primary/config/lua/core/options.lua index 70687250..ee9ceb43 100755 --- a/dots/.nvim-environments/primary/config/lua/core/options.lua +++ b/dots/.nvim-environments/primary/config/lua/core/options.lua @@ -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