From 0cb5ea41ac2f0f46b0185f3523c39875b0681df0 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sun, 17 Feb 2019 00:38:09 +0100 Subject: [PATCH] [vim] show hidden files in ctrlp --- vim/.vim/vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index 691c80b..c05902f 100644 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -95,6 +95,7 @@ set nocompatible let g:ctrlp_match_window = 'bottom,order:ttb' 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_show_hidden = 1 " show hidden files let g:rainbow#pairs = [['(',')'], ['[',']'], ['{','}']]