diff options
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | git-ack | 0 | ||||
-rw-r--r-- | init-optional | 19 |
3 files changed, 14 insertions, 8 deletions
diff --git a/.gitmodules b/.gitmodules index ec818fe..70c58f4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -31,3 +31,6 @@ [submodule "git-minibufexpl"] path = git-minibufexpl url = git://github.com/fholgado/minibufexpl.vim.git +[submodule "git-ack"] + path = git-ack + url = https://github.com/mileszs/ack.vim.git diff --git a/git-ack b/git-ack new file mode 160000 +Subproject f183a345a0c10caed7684d07dabae33e007c759 diff --git a/init-optional b/init-optional index c2ad038..a387400 100644 --- a/init-optional +++ b/init-optional @@ -14,14 +14,17 @@ optional () { # ??? # MinibufExpl # key thing - init_git_submodule $1 \ - 'git-makegreen' \ - 'git-tagbar' \ - 'git-fugitive' \ - 'git-powerline' \ - 'git-nerdtree' \ - 'git-sessionman' \ - 'git-minibufexpl' + # ack.vim + # integration with Ack grepping tool + init_git_submodule $1 \ + 'git-makegreen' \ + 'git-tagbar' \ + 'git-fugitive' \ + 'git-powerline' \ + 'git-nerdtree' \ + 'git-sessionman' \ + 'git-minibufexpl' \ + 'git-ack' [ "$1" == "get" ] \ && echo "let NERDTreeIgnore = ['\.pyc$', '\.tar\.gz$']" >> ~/.vimrc |