Skip to content

Instantly share code, notes, and snippets.

@cooljl31
Forked from davidmh/CtrlP_acceleration
Created July 27, 2017 20:08
Show Gist options
  • Save cooljl31/91d90febb81c64078a965cd28dce87b6 to your computer and use it in GitHub Desktop.
Save cooljl31/91d90febb81c64078a965cd28dce87b6 to your computer and use it in GitHub Desktop.
Accelerate CtrlP by ignoring certain files and paths. Including node modules and grunt's .tmp
" Ignore some folders and files for CtrlP indexing
let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|\.yardoc\|node_modules\|log\|tmp$',
\ 'file': '\.so$\|\.dat$|\.DS_Store$'
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment