From 32282ee771472024b458e4193ef94be66589d233 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 6 Oct 2022 09:40:05 -0500 Subject: [PATCH] refactor(nvim): set cmdheight to 0 --- dots/.nvim-environments/primary/config/lua/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.nvim-environments/primary/config/lua/core/options.lua b/dots/.nvim-environments/primary/config/lua/core/options.lua index ee9ceb43..487df744 100755 --- a/dots/.nvim-environments/primary/config/lua/core/options.lua +++ b/dots/.nvim-environments/primary/config/lua/core/options.lua @@ -118,7 +118,7 @@ M.setup = function() opt.modelines = 5 -- Set command bar height - opt.cmdheight = 1 + opt.cmdheight = 0 end return M