Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Prevent NERD Tree from opening buffer on start

I'm using Janus for Vim customizations.

One thing that bothers me is that it opens NERD Tree in a separate buffer on start. I don't want to disable NERD Tree completely. Just want to not get it opened on start.

Is there a way without tweaking the internals of Janus?

like image 688
iltempo Avatar asked Oct 21 '22 21:10

iltempo


1 Answers

Finally figured it out based on the Janus configuration mentioned by @romanl.

I had to add to ~/.vimrc.after

augroup AuNERDTreeCmd
  autocmd!
augroup end
like image 121
iltempo Avatar answered Oct 25 '22 19:10

iltempo