changes vimrc Explore variable

This commit is contained in:
hugo gogo
2022-08-29 13:22:33 +02:00
parent 6bc33cb8fb
commit c0ff122c97

View File

@@ -55,9 +55,20 @@ set number
" don't allow wrap
set nowrap
" using alternate buffer, ':b#', comes back to last file, and not explore buffer
" using alternate buffer with Explore, ':b#'
" =0 ot go back to explore buffer
" =1 ot go back to last edited file
" see :help g:netrw_altfile
let g:netrw_altfile = 1
" ! not good :
" with =1 the alternate buffer is not changed, so
" las edited file is not last file before Explore, but the previous one
" use :Lexplore instead of :Explore
"let g:netrw_altfile = 0
" choose how to print list in :Explore window
" =0 is default
" =3 is tree style
let g:netrw_liststyle = 3