Created
February 17, 2016 09:18
-
-
Save zindel/5afec4624ad29a56a955 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" CtrlP settings | |
let g:ctrlp_custom_ignore = { | |
\ 'dir': '\v[\/](\.git|\.hg|\.svn|[^\/]+\.egg-info)$', | |
\ 'file': '\v\.(exe|so|dll|pyc)$', | |
\ 'link': 'some_bad_symbolic_links', | |
\ } | |
let g:ctrlp_root_markers = ['rex.core'] | |
nnoremap <C-B> :CtrlPBuffer<CR> | |
nnoremap <C-o> :CtrlP $VIRTUAL_ENV/src<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment