Skip to content

Instantly share code, notes, and snippets.

@davidmh
Forked from av-ast/CtrlP_acceleration
Last active July 12, 2023 16:33
Show Gist options
  • Save davidmh/9011182 to your computer and use it in GitHub Desktop.
Save davidmh/9011182 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$'
\ }
@3ximus
Copy link

3ximus commented Apr 1, 2021

@BourgeoisBear That's perfect, thanks !

@javaddev
Copy link

Thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment