Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
Improve file searching behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
charlax committed Apr 12, 2019
1 parent 53dc241 commit 59536f2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pluginsrc.vim
Expand Up @@ -72,3 +72,16 @@ endfunction
let g:AutoPairsShortcutBackInsert=''

let g:EditorConfig_exclude_patterns = ['fugitive://.*']

" Configuration for vim-gutentags
let g:gutentags_file_list_command = {
\ 'markers': {
\ '.git': 'git ls-files',
\ '.hg': 'hg files',
\ },
\ }

" fzf
" Make :Ag not match file names, only the file content
" https://github.com/junegunn/fzf.vim/issues/346
command! -bang -nargs=* Ag call fzf#vim#ag(<q-args>, {'options': '--delimiter : --nth 4..'}, <bang>0)

0 comments on commit 59536f2

Please sign in to comment.