[ADD][VIM] Don't list Netrw buffers

I don't want to show a long list of directories in my buffer list,
This commit is contained in:
Bruno BELANYI 2019-10-08 17:49:23 +02:00
parent b7579b0a9b
commit 5e5b8271c2

View file

@ -140,6 +140,8 @@ call plug#end()
set nobackup
" Disable swapfiles too
set noswapfile
" Don't show Netrw buffers
autocmd FileType netrw setlocal bufhidden=delete
" }}}
" UI and UX parameters {{{