vimenv

configure vim environment
git clone git://git.unixkoans.com/vimenv.git
Log | Files | Refs | Submodules

commit e7d5d357fd6724b7e6891699eef73560b749ee69
parent 7b71741666576e08ea420651f8428567bd500a03
Author: Xiaodong Xu <[email protected]>
Date:   Sun Dec  8 17:36:25 +0800

Remove useless plugins

Diffstat:
.gitmodules | 3---
_vim/bundle/color_highlight | 2+-
_vim/bundle/endwise | 2+-
_vim/bundle/gitgutter | 2+-
_vim/bundle/indent-guides | 1-
_vim/bundle/nginx-vim-syntax | 2+-
_vim/bundle/perl | 2+-
_vim/bundle/python-mode | 1-
_vim/bundle/syntastic | 2+-
_vim/bundle/tagbar | 2+-
_vim/bundle/ultisnips | 2+-
_vim/bundle/unite | 2+-
_vim/bundle/vimux | 2+-
_vim/conf/plugin.vim | 13++++++++-----
14 files changed, 18 insertions(+), 20 deletions(-)
diff --git a/.gitmodules b/.gitmodules @@ -142,6 +142,3 @@ [submodule "_vim/bundle/nginx-vim-syntax"] path = _vim/bundle/nginx-vim-syntax url = git://github.com/evanmiller/nginx-vim-syntax.git -[submodule "_vim/bundle/python-mode"] - path = _vim/bundle/python-mode - url = git://github.com/klen/python-mode.git diff --git a/_vim/bundle/color_highlight b/_vim/bundle/color_highlight @@ -1 +1 @@ -Subproject commit e3b56593295c110b90ef178ec91901af4f9b29b9 +Subproject commit e043b7fb61a3b325f896fd16be7faa39cc68de82 diff --git a/_vim/bundle/endwise b/_vim/bundle/endwise @@ -1 +1 @@ -Subproject commit b2a7fd53dfc4189ae83a8c2b8c4578cfae93d2e5 +Subproject commit a12bad212e21ac23fb66653b0dbf2f203b37e161 diff --git a/_vim/bundle/gitgutter b/_vim/bundle/gitgutter @@ -1 +1 @@ -Subproject commit 878c3422c9ad9edc7b907948515b3118d91a67d1 +Subproject commit 926aea86c1dcd4f64ca03596a1c10ccc70e0c1de diff --git a/_vim/bundle/indent-guides b/_vim/bundle/indent-guides @@ -1 +0,0 @@ -Subproject commit eec1b629dc4cfa3986d20f21d4b4489732cd3f5a diff --git a/_vim/bundle/nginx-vim-syntax b/_vim/bundle/nginx-vim-syntax @@ -1 +1 @@ -Subproject commit d4d2ab1f6a152af8912f719090625d9b99f78ea9 +Subproject commit 8dffab7043185482414ac9c4d7041e26d77cb898 diff --git a/_vim/bundle/perl b/_vim/bundle/perl @@ -1 +1 @@ -Subproject commit 251ab3b1962a161c6219a722ddc8bcc0a94ae83f +Subproject commit a82cf0f78c1ed16804308bd8c7b9c91672ba9836 diff --git a/_vim/bundle/python-mode b/_vim/bundle/python-mode @@ -1 +0,0 @@ -Subproject commit b658e59f5dd6f8f4739dfcf102dbde920dd4f6fc diff --git a/_vim/bundle/syntastic b/_vim/bundle/syntastic @@ -1 +1 @@ -Subproject commit 1ee2930e242056bd6cdd250bc9116a66036c6c6e +Subproject commit 936bd72a069b95a3a2246cb7a087b5c853f884d6 diff --git a/_vim/bundle/tagbar b/_vim/bundle/tagbar @@ -1 +1 @@ -Subproject commit 87bbb46e959e455bb5e488c4197b61a46927b20e +Subproject commit 6d8770f949b8bd5160e65a7fc8ebce588e3b4736 diff --git a/_vim/bundle/ultisnips b/_vim/bundle/ultisnips @@ -1 +1 @@ -Subproject commit cca1deb78ccc9fc6267202f36c62cc767b3138aa +Subproject commit 179af2f970549f02fab1329a90cd31a4970cfe45 diff --git a/_vim/bundle/unite b/_vim/bundle/unite @@ -1 +1 @@ -Subproject commit 84ccbde67cabcd01ac873491b4fe0265809c842b +Subproject commit 1ac47bba02568ab714be8a597c439da740aa4b43 diff --git a/_vim/bundle/vimux b/_vim/bundle/vimux @@ -1 +1 @@ -Subproject commit f56788990df10da1042725af6d8414fef16e6493 +Subproject commit dfe4fa0b9e9840cbb165f9cb2b7216bff890bc77 diff --git a/_vim/conf/plugin.vim b/_vim/conf/plugin.vim @@ -1,6 +1,6 @@ " " author : Xu Xiaodong <[email protected]> -" modified : 2013 Jul 23 +" modified : 2013 Dec 08 " "-- plugin --" @@ -16,7 +16,7 @@ vmap <silent> <leader>i, <esc>:AlignPush<cr>:AlignCtrl lp0P1<cr>:'<,'>Align ,<cr vmap <silent> <leader>i( <esc>:AlignPush<cr>:AlignCtrl lp0P0<cr>:'<,'>Align (<cr>:AlignPop<cr> " powerline -let g:Powerline_symbols='unicode' +let g:Powerline_symbols='compatible' let g:Powerline_theme='codefun' " nerdtree @@ -38,14 +38,17 @@ let g:slime_target='tmux' let g:neocomplcache_enable_at_startup=1 " indent guides -let g:indent_guides_enable_on_vim_startup=0 -let g:indent_guides_start_level=1 -let g:indent_guides_guide_size=1 +"let g:indent_guides_enable_on_vim_startup=0 +"let g:indent_guides_start_level=1 +"let g:indent_guides_guide_size=1 " ultisnips let g:UltiSnipsEditSplit='horizontal' let g:UltiSnipsSnippetsDir='~/.vim/bundle/ultisnips/UltiSnips' +" python mode +"let g:pymode_rope_lookup_project=0 + " hybrid let g:hybrid_use_Xresources=1