[vim] show hidden files in ctrlp

This commit is contained in:
Fernando Schauenburg 2019-02-17 00:38:09 +01:00
parent 861212dcc8
commit 0cb5ea41ac

View file

@ -95,6 +95,7 @@ set nocompatible
let g:ctrlp_match_window = 'bottom,order:ttb' let g:ctrlp_match_window = 'bottom,order:ttb'
let g:ctrlp_switch_buffer = 0 " open files in new buffer let g:ctrlp_switch_buffer = 0 " open files in new buffer
let g:ctrlp_working_path_mode = 0 " use the current working directory let g:ctrlp_working_path_mode = 0 " use the current working directory
let g:ctrlp_show_hidden = 1 " show hidden files
let g:rainbow#pairs = [['(',')'], ['[',']'], ['{','}']] let g:rainbow#pairs = [['(',')'], ['[',']'], ['{','}']]