search ignores
This commit is contained in:
parent
c8e3090787
commit
02f6548696
5
vimrc
5
vimrc
|
@ -266,7 +266,7 @@ xmap ah <Plug>GitGutterTextObjectOuterVisual
|
|||
|
||||
if executable('ag')
|
||||
" Use ag over grep
|
||||
set grepprg=ag\ --nogroup\ --nocolor
|
||||
set grepprg=ag\ --nogroup\ --nocolor\ --ignore\ node_modules
|
||||
|
||||
" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
|
||||
let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'
|
||||
|
@ -857,6 +857,7 @@ set smartcase
|
|||
|
||||
set wildmenu
|
||||
set wildmode=longest:full,full
|
||||
set wildignore+=/node_modules/,dist/
|
||||
|
||||
set hidden
|
||||
|
||||
|
@ -1069,6 +1070,8 @@ iabbrev b100; bottom: 100%;
|
|||
iabbrev l100; left: 100%;
|
||||
iabbrev r100; right: 100%;
|
||||
|
||||
iabbrev w: width:;<left>
|
||||
iabbrev h: height:;<left>
|
||||
iabbrev ct'' content-type: '';
|
||||
iabbrev bgc: background-color:;<left>
|
||||
|
||||
|
|
Loading…
Reference in New Issue