1

Is there any way to do not show status line (I am using lightline) for some windows - MiniBufExplorer or NERDTree ?

Status line for MiniBufExplorer

melekes
  • 1,880
  • 2
  • 24
  • 30

1 Answers1

2

You can locally clear the 'statusline' setting (am empty value will bring up the default, but you can choose just the background color group to make it effectively disappear):

:setlocal statusline=%#Normal#

To apply that automatically to MiniBufExpl windows, you can use an :autocmd, either based on the characteristic buffer name (BufWinEnter event), or if the plugin sets a 'filetype', on the FileType event.

Ingo Karkat
  • 167,457
  • 16
  • 250
  • 324