[vim] fixes for netrw weirdness

https://github.com/tpope/vim-vinegar/issues/13
pull/28/head
Alpha Chen 5 years ago
parent 6600d336d6
commit 0bbed0c683

@ -90,7 +90,7 @@ set foldmethod=syntax " Fold on the syntax
" Editing {{{
" set hidden
set hidden
if !has("nvim")
set noesckeys
endif
@ -111,16 +111,6 @@ augroup RestoreCursor
autocmd BufWinEnter * call RestoreCursor()
augroup end
" augroup netrw_buf_hidden_fix
" autocmd!
" " Set all non-netrw buffers to bufhidden=hide
" autocmd BufWinEnter *
" \ if &ft != 'netrw'
" \| set bufhidden=hide
" \| endif
" augroup end
augroup DisableAutoComment
autocmd BufEnter * setlocal formatoptions-=o
augroup END
@ -170,7 +160,8 @@ set smartcase
" netrw
let g:netrw_fastbrowse=0
" https://github.com/tpope/vim-vinegar/issues/13
let g:netrw_liststyle=0
" ripgrep
if executable('rg')

Loading…
Cancel
Save