This repository has been archived on 2021-12-21. You can view files and clone it, but cannot push or open issues/pull-requests.
neovim-config/init/ctrlp.vim

9 lines
244 B
VimL

" Remap CtrlP shortcut
let g:ctrlp_map = '<leader>t'
" Disable caching
let g:ctrlp_use_caching = 0
" Only show files in git repo, ignoring .gitignore content
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard']