Search code examples
linuxunixvimnerdtree

Auto-open NERDTree in vim


Does someone know how to force .vimrc to auto-open NERDTree each time vim is invoked? The operation system is *nix.


Solution

  •  au VimEnter *  NERDTree
    

    in your vimrc should do it

    :he autocmd.txt for background