vim: fix ctrlp config

feature/symbol-search
bretello 2020-04-06 19:46:13 +02:00
parent 8bd637dc6b
commit 878741ef29
1 changed files with 1 additions and 5 deletions

View File

@ -89,6 +89,7 @@ let g:ctrlp_custom_ignore = {
\ }
" \ 'file': '\v\.(exe|so|dll)$',
" \ 'link': 'some_bad_symbolic_links',
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard']
nnoremap <leader>mk :bel copen<bar>silent (cargo run) !<bar>redraw!<cr>
@ -107,11 +108,6 @@ highlight DiffDelete cterm=bold ctermfg=10 ctermbg=17 gui=none guifg=bg guibg=Re
highlight DiffChange cterm=bold ctermfg=10 ctermbg=17 gui=none guifg=bg guibg=Red
highlight DiffText cterm=bold ctermfg=10 ctermbg=88 gui=none guifg=bg guibg=Red
" let g:ctrlp_custom_ignore = {
" \ 'file': '\v\.(pdf|csv|gz|csv)$',
" \ 'dir': '(dist|build)$',
" \ }
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard']
function! WinZoomToggle() abort
if ! exists('w:WinZoomIsZoomed')