vimenv

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

commit faa7d3e48311c56451c44fd6e101dffd39cd9bb6
parent 6e0f7215f069185cd9c764c04922361719566ec5
Author: Xiaodong Xu <[email protected]>
Date:   Tue May  8 21:56:14 +0800

Cleanup plugins

Diffstat:
.gitmodules | 9---------
_vim/bundle/ctrlp | 2+-
_vim/bundle/fugitive | 2+-
_vim/bundle/gist | 1-
_vim/bundle/pathogen | 2+-
_vim/bundle/snipmate | 1-
_vim/bundle/tabular | 1-
_vim/bundle/tagbar | 2+-
_vim/conf/plugin.vim | 5++++-
vimenv | 4+++-
10 files changed, 11 insertions(+), 18 deletions(-)
diff --git a/.gitmodules b/.gitmodules @@ -19,18 +19,9 @@ [submodule "_vim/bundle/tagbar"] path = _vim/bundle/tagbar url = git://github.com/majutsushi/tagbar.git -[submodule "_vim/bundle/tabular"] - path = _vim/bundle/tabular - url = git://github.com/godlygeek/tabular.git [submodule "_vim/bundle/align"] path = _vim/bundle/align url = git://github.com/vim-scripts/Align.git -[submodule "_vim/bundle/gist"] - path = _vim/bundle/gist - url = git://github.com/mattn/gist-vim.git -[submodule "_vim/bundle/snipmate"] - path = _vim/bundle/snipmate - url = git://github.com/msanders/snipmate.vim.git [submodule "_vim/bundle/miro"] path = _vim/bundle/miro url = git://github.com/xuxiaodong/miro-vim.git diff --git a/_vim/bundle/ctrlp b/_vim/bundle/ctrlp @@ -1 +1 @@ -Subproject commit e61e7d5b801ade5fcefeab3aca75c1f37d54bdf1 +Subproject commit 80bc9cea8cc435c9aa9d5ad20b768bb420e4686e diff --git a/_vim/bundle/fugitive b/_vim/bundle/fugitive @@ -1 +1 @@ -Subproject commit 1b6c0cbfb66dd6827c4902bf340d3e53e710097a +Subproject commit 765c921e1f0281963009b3e06a94227a8c0a2408 diff --git a/_vim/bundle/gist b/_vim/bundle/gist @@ -1 +0,0 @@ -Subproject commit e2ce76993a5092c51baa5486aa1d93fcdcb7e9b5 diff --git a/_vim/bundle/pathogen b/_vim/bundle/pathogen @@ -1 +1 @@ -Subproject commit c9fb89dd6efdeedb95c411ec78b3a9493602d33d +Subproject commit 09f2c3b7d3666124157de759a68afe47d0bb8d25 diff --git a/_vim/bundle/snipmate b/_vim/bundle/snipmate @@ -1 +0,0 @@ -Subproject commit f5a75d075d3c005ebe69e3f5e56cf99516e8aa3b diff --git a/_vim/bundle/tabular b/_vim/bundle/tabular @@ -1 +0,0 @@ -Subproject commit b7b4d8791a50013b56c2d68b6c5708c808203b54 diff --git a/_vim/bundle/tagbar b/_vim/bundle/tagbar @@ -1 +1 @@ -Subproject commit 814bb41ecfb90313e7188745bc3913abdb747af1 +Subproject commit 272e2e84784e9a4bc7603da9ca26a22ff6c8e6b9 diff --git a/_vim/conf/plugin.vim b/_vim/conf/plugin.vim @@ -1,6 +1,6 @@ " " author: Xu Xiaodong <[email protected]> -" modified: 2012 Apr 14 +" modified: 2012 Apr 24 " "-- plugin --" @@ -10,6 +10,9 @@ runtime bundle/pathogen/autoload/pathogen.vim call pathogen#infect() call pathogen#helptags() +" Powerline +"let g:Powerline_symbols='fancy' + " commant-t let g:CommandTAlwaysShowDotFiles=1 let g:CommandTScanDotDirectories=1 diff --git a/vimenv b/vimenv @@ -5,7 +5,7 @@ # author: Xu Xiaodong <[email protected]> # license: GPL # created: 2012 Apr 14 -# modified: 2012 Apr 17 +# modified: 2012 May 08 # require 'fileutils' @@ -49,6 +49,7 @@ end def remove(name) path = '_vim/bundle/' + name.downcase + git_path = '.git/modules/' + path files = [".git/config", ".gitmodules"] puts "Removing #{path}" @@ -59,6 +60,7 @@ def remove(name) end FileUtils.rmtree(path) + FileUtils.rmtree(git_path) end def update