|
@@ -28,3 +28,9 @@ let g:fern#disable_default_mappings = 1
|
|
|
let g:fern#disable_drawer_tabpage_isolation = 1
|
|
|
let g:fern#default_hidden = 0
|
|
|
let g:fern#renderer = "nerdfont"
|
|
|
+
|
|
|
+" add dirs and files inside the brackets that need to remain hidden
|
|
|
+let hide_dirs = '^\%(\.git\|node_modules\)$' " here you write the dir names
|
|
|
+let hide_files = '\%(^.*\.class\|\.ruby-\)\+' " here you write the file names
|
|
|
+
|
|
|
+let g:fern#default_exclude = hide_dirs . '\|' . hide_files " here you exclude them
|