Mercurial > dotfiles.old
changeset 121:eae8e7173918
Update plugins
author | zegervdv <zegervdv@me.com> |
---|---|
date | Thu, 25 Sep 2014 18:01:31 +0200 |
parents | fa0b6b2cbfb6 |
children | 5ec9c636da2a |
files | .hgsubstate vimrc |
diffstat | 2 files changed, 12 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgsubstate Mon Sep 22 10:29:27 2014 +0200 +++ b/.hgsubstate Thu Sep 25 18:01:31 2014 +0200 @@ -3,7 +3,7 @@ 303bceff1c8ab1145d114083582b1aeac9de7a85 vim/bundle/ack 0c5612fa31ee434ba055e21c76f456244b3b5109 vim/bundle/addon-mw-utils d3a00f8affb091e7a14eb34f1beb9db9bb57a4bf vim/bundle/ag -4dab93470f385559c9a914525ff4c2bdd569d4ea vim/bundle/airline +825a048b1078f83ec40afc2c6af10366ac7c0969 vim/bundle/airline c2f60ca2e57fb65d2230c6fe58e7aba5ab065b2e vim/bundle/auto-pairs 1ce4b842b43a1e744008cbef349341a6645662ee vim/bundle/base16 37096dbdcb84d89b17e6706f3e4e84da3c2a2990 vim/bundle/bundler @@ -37,12 +37,12 @@ 95e547f087534e8d9f6613c86c69265f1a4dd226 vim/bundle/rspec-syntax 5bc55bec639836ff5c35f58dc62988d6d1e74bd9 vim/bundle/ruby 64aa12b07b0be90a8e98bc7be1b5faac4ac873a4 vim/bundle/sensible -db37b9d8b904aa74255fc77aab13d3e771aba545 vim/bundle/signature +3bc19dcacc97d2b95e3f689461e25796af4ab609 vim/bundle/signature 0daaa8581f9a9968cebbc7d14ae9acf1625c0389 vim/bundle/slim d038a6dde65404ad5eec53d387f6b9a44ed44609 vim/bundle/smalls -af2368cd75370a3296be1772017a7621d9e1a012 vim/bundle/startify +b2af0d5764d995a18113864f0aa397786c162274 vim/bundle/startify fa433e0b7330753688f715f3be5d10dc480f20e5 vim/bundle/surround -b639b007ae98bbc658261484fe4ab07677fe1c0f vim/bundle/syntastic +2a88120b33a76b29a3a80dc007cca30a34f985b7 vim/bundle/syntastic 60f25648814f0695eeb6c1040d97adca93c4e0bb vim/bundle/tabular 9ee516ee6ff5eb4ac21bb0c5a13b1b6d2bd4919f vim/bundle/tagbar 15f8bd83eaa08254a1ff15530fb3c62cfaa66f6f vim/bundle/targets @@ -50,13 +50,13 @@ f9ba6df8838be0fcf8fb763459bfac35c5df2e78 vim/bundle/textmanip bc4097bd38c4bc040fe1e74df68dec6c9adfcb6a vim/bundle/tlib 7bfdda29120dbab0787c966dd35db025305675e1 vim/bundle/tomdoc -a02de85bc4d639fae14101e246f4f1796948efe6 vim/bundle/unite -e12b7af827ea19b6bf979516532a27fb16396a24 vim/bundle/unite-build +eaa9a15c76b79963ce542bd4ba1dd3db6cb29d77 vim/bundle/unite +fad711808494404e8ffbd16f03463414d897398c vim/bundle/unite-build 20c30e26d4405b88b7030dcfd2fe527178863dcf vim/bundle/unite-outline 0dd146b4b028d9300ca730128b027cf8ba83b7b8 vim/bundle/unite-tag 4fb9cdde57d49fc45f9c9e81b693f55e89464bf0 vim/bundle/vim-session -5ae3b5a46fda3cc86c53581ec77052ca5e8a1f7f vim/bundle/vimfiler -21a79bf4edca3ae97555df3fc729d208c7e19b9c vim/bundle/vimproc +836a7f2452dbd3b1a1eddc0413e5b9ed961cb125 vim/bundle/vimfiler +3ea27b77091066c217fd46aec9e0d504de494c5d vim/bundle/vimproc 2c03d82a0e4662adf1e347487d73a9bf4bf6fdac vim/bundle/vimwiki 22fa4e57fa3b0e4c9a83de51717b621fe9ca8cd7 vim/bundle/vis ca033af7273894da4c7e25f64e33e7fc141ef3b2 vimwiki
--- a/vimrc Mon Sep 22 10:29:27 2014 +0200 +++ b/vimrc Thu Sep 25 18:01:31 2014 +0200 @@ -283,7 +283,8 @@ " Unite {{{ call unite#filters#matcher_default#use(['matcher_fuzzy','matcher_regexp']) call unite#filters#sorter_default#use(['sorter_rank']) - call unite#set_profile('files', 'smartcase', 1) + " call unite#set_profile('files', 'smartcase', 1) + call unite#custom#profile('files', 'context.smartcase', 1) call unite#custom#source('line,outline', 'matchers', 'matcher_fuzzy') call unite#custom#source( 'buffer', 'converters', ['converter_file_directory']) " sort file results by length @@ -291,7 +292,7 @@ call unite#custom#source('file_rec/async', 'sorters', 'sorter_length') let g:unite_enable_start_insert=0 let g:unite_source_history_yank_enable=1 - let g:unite_source_rec_max_cache_files=5000 + let g:unite_source_rec_max_cache_files=3000 let g:unite_prompt='ยป ' if executable('ag') let g:unite_source_grep_command = 'ag' @@ -299,6 +300,7 @@ \ '-i --line-numbers --nocolor --nogroup --hidden --ignore ' . \ '''.hg'' --ignore ''.svn'' --ignore ''.git'' --ignore ''.bzr''' let g:unite_source_grep_recursive_opt = '' + let g:unite_source_rec_async_command = 'ag --nocolor --nogroup --hidden -g ""' elseif executable('ack') let g:unite_source_grep_command='ack' let g:unite_source_grep_default_opts='--no-heading --no-color -C4'