From 8314c676b65aa698229b231d606b7d22597ba0f8 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sun, 6 Jan 2013 13:24:40 -0500 Subject: [PATCH] Provide a default for g:netrw_list_hide --- plugin/sensible.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/sensible.vim b/plugin/sensible.vim index 1000e32..68f5c78 100644 --- a/plugin/sensible.vim +++ b/plugin/sensible.vim @@ -55,6 +55,10 @@ if &t_Co == 8 && $TERM !~# '^linux' set t_Co=16 endif +if !exists('g:netrw_list_hide') + let g:netrw_list_hide = '^\.,\~$,^tags$' +endif + if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# '' runtime! macros/matchit.vim endif