From b5f827652c4a8bbbfb1b25a065afdad681f69e35 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 30 Aug 2022 06:39:36 +0200 Subject: [PATCH] nvim: reduce message area to 1 line --- .config/nvim/lua/my/settings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/my/settings.lua b/.config/nvim/lua/my/settings.lua index 3030f41..abdc6d0 100644 --- a/.config/nvim/lua/my/settings.lua +++ b/.config/nvim/lua/my/settings.lua @@ -17,7 +17,7 @@ local options = { shiftwidth = 4, -- 1 indentation = 4 spaces completeopt = 'menu,menuone,noselect', -- completion popup autochdir = true, -- change workir to current file dir - cmdheight = 2, -- message area size + cmdheight = 1, -- message area size mouse = '', -- make use of mouse in these modes pumheight = 10, -- maximum entries in popup menu smartindent = true, -- indent after { and so on