diff options
| author | Anton Bobov <abobov@gmail.com> | 2014-07-04 15:19:04 +0600 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2014-07-04 15:51:07 +0600 |
| commit | fc24849236c507230681db78c6d313a86e9cb8f0 (patch) | |
| tree | 608beaa6df4bdcd4ec4df92bffe215d1b6eb65c2 | |
| parent | ed76d53eab315f91163b295c9dba74b5eab6bf61 (diff) | |
Add FuzzyFinder vim plugin.
| -rw-r--r-- | .gitmodules | 10 | ||||
| m--------- | files/.vim/bundle/FuzzyFinder | 0 | ||||
| m--------- | files/.vim/bundle/L9 | 0 | ||||
| -rw-r--r-- | files/.vimrc | 7 |
4 files changed, 14 insertions, 3 deletions
diff --git a/.gitmodules b/.gitmodules index 0b8d41a..088c36f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -57,5 +57,11 @@ path = files/.vim/bundle/taglist.vim url = https://github.com/vim-scripts/taglist.vim [submodule "syntastic"] - path = files/.vim/bundle/syntastic - url = https://github.com/scrooloose/syntastic.git + path = files/.vim/bundle/syntastic + url = https://github.com/scrooloose/syntastic.git +[submodule "FuzzyFinder"] + path = files/.vim/bundle/FuzzyFinder + url = https://github.com/vim-scripts/FuzzyFinder.git +[submodule "L9"] + path = files/.vim/bundle/L9 + url = https://github.com/vim-scripts/L9.git diff --git a/files/.vim/bundle/FuzzyFinder b/files/.vim/bundle/FuzzyFinder new file mode 160000 +Subproject b9f165970346df55862853dd83c8a4f2b2b7026 diff --git a/files/.vim/bundle/L9 b/files/.vim/bundle/L9 new file mode 160000 +Subproject c822b05ee0886f9a9703227dc85a6d47612c4bf diff --git a/files/.vimrc b/files/.vimrc index d970839..0993a29 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -1,4 +1,4 @@ -" vim: spell spelllang=ru,en : +" vim: spell spelllang=ru,en foldmethod=marker : " Установить режим не совместимый с Vi set nocompatible language C @@ -209,3 +209,8 @@ let s:local_vimrc=$MYVIMRC . ".local" if filereadable(s:local_vimrc) silent! execute ':source ' . s:local_vimrc endif + +" Fuzzy Finder {{{1 +nnoremap '. :FufFileWithCurrentBufferDir<CR> +nnoremap 'f :FufFile<CR> +nnoremap 'k :FufBuffer<CR> |
