Add ag vim module
This commit is contained in:
parent
192ef901eb
commit
cf9c1fceb2
3 changed files with 6 additions and 1 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -49,3 +49,6 @@
|
||||||
[submodule ".vim/bundle/YouCompleteMe"]
|
[submodule ".vim/bundle/YouCompleteMe"]
|
||||||
path = .vim/bundle/YouCompleteMe
|
path = .vim/bundle/YouCompleteMe
|
||||||
url = https://github.com/Valloric/YouCompleteMe.git
|
url = https://github.com/Valloric/YouCompleteMe.git
|
||||||
|
[submodule ".vim/bundle/ag"]
|
||||||
|
path = .vim/bundle/ag
|
||||||
|
url = https://github.com/rking/ag.vim
|
||||||
|
|
|
||||||
1
.vim/bundle/ag
Submodule
1
.vim/bundle/ag
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit f05f31352689be245611c893b37652110f27a2c5
|
||||||
3
.vimrc
3
.vimrc
|
|
@ -168,7 +168,7 @@ if has("folding")
|
||||||
endfun
|
endfun
|
||||||
command! Tfdm call ToggleFoldmethod()
|
command! Tfdm call ToggleFoldmethod()
|
||||||
set nofoldenable
|
set nofoldenable
|
||||||
set foldmethod=syntax
|
set foldmethod=manual
|
||||||
set foldlevelstart=0 " Start with all folds closed
|
set foldlevelstart=0 " Start with all folds closed
|
||||||
"set foldclose=all " Close folds when cursor leaves them
|
"set foldclose=all " Close folds when cursor leaves them
|
||||||
endif
|
endif
|
||||||
|
|
@ -1165,6 +1165,7 @@ Bundle 'hunner/vim-plist'
|
||||||
Bundle 'vim-coffee-script'
|
Bundle 'vim-coffee-script'
|
||||||
Bundle 'syntastic'
|
Bundle 'syntastic'
|
||||||
Bundle 'YouCompleteMe'
|
Bundle 'YouCompleteMe'
|
||||||
|
Bundle 'rking/ag'
|
||||||
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
" Brief help
|
" Brief help
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue