From 46e437271a1964dcfb12f5e3990f98f279d8c435 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Mon, 4 May 2015 12:47:00 -0400 Subject: [PATCH] Set the minimum width and height to 1x1 --- vim/config/settings.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/config/settings.vim b/vim/config/settings.vim index eccde0b..a8b7234 100644 --- a/vim/config/settings.vim +++ b/vim/config/settings.vim @@ -56,8 +56,8 @@ "USER INTERFACE: {{{ set laststatus=2 showcmd statusline=%F%m%r%h%w[%L][%{&ff}]%y[%p%%][%04l,%04v] "statusline init and config - set winheight=5 winminheight=5 "set the minimum window height to 10 lines - set winwidth=5 winminwidth=5 "set the minimum window width to 10 columns + set winheight=1 winminheight=1 "set the minimum window height to 1 lines + set winwidth=1 winminwidth=1 "set the minimum window width to 1 columns set noshowmode "don't display mode information handled by lightline set lazyredraw "don't redraw the screen while macros are executing set noequalalways "don't force splits to be equal in size when closing or opening one