You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
451 B
15 lines
451 B
" Specific search configurations |
|
|
|
" ctrlp hotkeys |
|
let g:ctrlp_map='<c-p>' |
|
let g:ctrlp_cmd='CtrlP' |
|
|
|
" Rebind Ctrl-P to match the window opening keys of nerd tree |
|
let g:ctrl_p_prompt_mappings = { |
|
\ 'AcceptSelection("h")': ['<c-i>', '<c-cr>', '<c-s>'], |
|
\ 'AcceptSelection("v")': ['<c-s>', '<RightMouse>'], |
|
\ } |
|
|
|
" ctrlp configuration |
|
set wildignore+=*/tmp/*,*.so,*.swp,*.zip " MacOSX/Linux |
|
set wildignore+=*\\tmp\\*,*.swp,*.zip,*.exe " Windows
|
|
|