Skip to content

Commit

Permalink
trying different finding modes for ctrlp
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcooper committed Mar 17, 2012
1 parent 68878dc commit 449ff90
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,11 @@ vmap <leader>p "*gP

" CTR-P plugin settings
"let g:ctrlp_user_command = ['.git/', 'cd %s && git ls-files', 'find %s -type f']
let g:ctrlp_user_command = 'find %s -type f'
let g:ctrlp_custom_ignore = {'dir': '\.git$\'}
let g:ctrlp_user_command = ['.git/', 'cd %s && git ls-files', 'find %s -type f']
"let g:ctrlp_custom_ignore = {'dir': '\.git$\'}
"let g:ctrlp_user_command = ['.git/', 'cd %s && git ls-files']
"let g:ctrlp_user_command = ['.hg/', 'hg --cwd %s locate -I .']
"let g:ctrlp_user_command = { 'types': { 1: ['.git/', 'cd %s && git ls-files'], 2: ['.hg/', 'hg --cwd %s locate -I .'], }, 'fallback': 'find %s -type f' }

" succombing to nerdtree
let g:NERDTreeWinSize=40
Expand Down

0 comments on commit 449ff90

Please sign in to comment.