- install the silver searcher
 
brew install the_silver_searcher- Add this to your .vimrc
 
"""""""""""""""""""""""""""""""""""""""""""""""""""""
" CTRLP 
"""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:ctrlp_user_command = 'ag %s -i --nocolor --nogroup --hidden
      \ --ignore .git
      \ --ignore .svn
      \ --ignore .hg
      \ --ignore .DS_Store
      \ --ignore "**/*.pyc"
      \ -g ""'