vimenv

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

commit d11c65cc281d2cd71051b9fad20823cd711723b5
parent 229b9073df53c686a4f402b5e0537a692da7b3c2
Author: Xiaodong Xu <[email protected]>
Date:   Fri Jun 22 19:13:41 +0800

Add neverland colorscheme

Diffstat:
.gitmodules | 9++++++---
_vim/bundle/ctrlp | 2+-
_vim/bundle/fugitive | 2+-
_vim/bundle/jellybeans | 2+-
_vim/bundle/markdown-helper | 2+-
_vim/bundle/nerdcommenter | 2+-
_vim/bundle/neverland | 1+
_vim/bundle/powerline | 2+-
_vim/bundle/ruby | 2+-
_vim/bundle/surround | 2+-
_vim/bundle/tagbar | 2+-
_vim/conf/plugin.vim | 6+++---
vimenv | 4++--
13 files changed, 21 insertions(+), 17 deletions(-)
diff --git a/.gitmodules b/.gitmodules @@ -7,9 +7,6 @@ [submodule "_vim/bundle/jellybeans"] path = _vim/bundle/jellybeans url = git://github.com/nanotech/jellybeans.vim.git -[submodule "_vim/bundle/powerline"] - path = _vim/bundle/powerline - url = git://github.com/Lokaltog/vim-powerline.git [submodule "_vim/bundle/smartinput"] path = _vim/bundle/smartinput url = git://github.com/kana/vim-smartinput.git @@ -55,3 +52,9 @@ [submodule "_vim/bundle/markdown-helper"] path = _vim/bundle/markdown-helper url = git://github.com/xuxiaodong/vim-markdown-helper.git +[submodule "_vim/bundle/powerline"] + path = _vim/bundle/powerline + url = git://github.com/xuxiaodong/vim-powerline.git +[submodule "_vim/bundle/neverland"] + path = _vim/bundle/neverland + url = git://github.com/trapd00r/neverland-vim-theme.git diff --git a/_vim/bundle/ctrlp b/_vim/bundle/ctrlp @@ -1 +1 @@ -Subproject commit f7561810bf259a1b44c409095e4af1ca7cec1288 +Subproject commit 4e38004029c50ae22a0e32432ff5f5a0893910fc diff --git a/_vim/bundle/fugitive b/_vim/bundle/fugitive @@ -1 +1 @@ -Subproject commit 6515bd43acc28c86fcf3bea64ce8a6b3d7db19ff +Subproject commit 49c6be334c0b7950c837bd9f69c30c9f5ccd2e97 diff --git a/_vim/bundle/jellybeans b/_vim/bundle/jellybeans @@ -1 +1 @@ -Subproject commit 2c306097f8320286ae26fd9e45b9c0a8911ec210 +Subproject commit 2737231a45b02e54c53c1912ba06d7e77502cb46 diff --git a/_vim/bundle/markdown-helper b/_vim/bundle/markdown-helper @@ -1 +1 @@ -Subproject commit f359429480e6a5938aa99d0bdbb8568f44be72f7 +Subproject commit 5b71393ecb7e582c9cbb694cea6e634cc6867387 diff --git a/_vim/bundle/nerdcommenter b/_vim/bundle/nerdcommenter @@ -1 +1 @@ -Subproject commit cb242a9cb41e9fc9884caa2235c67d18b18e9067 +Subproject commit baa453aad84bbdb999c9d75915886244b98c39f3 diff --git a/_vim/bundle/neverland b/_vim/bundle/neverland @@ -0,0 +1 @@ +Subproject commit 1ebd1707b951ec14babc42091c5fdeb420c60993 diff --git a/_vim/bundle/powerline b/_vim/bundle/powerline @@ -1 +1 @@ -Subproject commit 99277d9eed97a59cacc1db8c1dece2bcfd96d877 +Subproject commit b31111e14ceac0160a1703030fbbaae5656bee4c diff --git a/_vim/bundle/ruby b/_vim/bundle/ruby @@ -1 +1 @@ -Subproject commit 4cf6a00a1e9cc0c5404fc2c11447716b5abc1ce7 +Subproject commit 34a086257a2430a14526daf25b50cc7a2b6894e9 diff --git a/_vim/bundle/surround b/_vim/bundle/surround @@ -1 +1 @@ -Subproject commit 489a1e8c676ad47dd358dbf883bfaf492148d38b +Subproject commit 1a73f607f8f5477d6942df2eb6e7245c4864f4d3 diff --git a/_vim/bundle/tagbar b/_vim/bundle/tagbar @@ -1 +1 @@ -Subproject commit ee1c4e137e33c64c787df68efcca7e9af4c5f790 +Subproject commit 9ae2b2d818f3a2044eb0482e61de638d0eb41988 diff --git a/_vim/conf/plugin.vim b/_vim/conf/plugin.vim @@ -1,6 +1,6 @@ " " author: Xu Xiaodong <[email protected]> -" modified: 2012 May 26 +" modified: 2012 Jun 22 " "-- plugin --" @@ -16,10 +16,10 @@ 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='fancy' " markdown helper -let g:markdownheader_style="atx" +"source ~/code/vim-md-helper/plugin/markdown-helper.vim " gsession "let g:local_session_filename='.session.vim' diff --git a/vimenv b/vimenv @@ -4,7 +4,7 @@ # author : Xu Xiaodong <[email protected]> # license : GPL # created : 2012 Apr 14 -# modified : 2012 May 19 +# modified : 2012 Jun 22 # require 'fileutils' @@ -37,7 +37,7 @@ def edit end def add(author_slash_name) - name = author_slash_name.gsub(/^.*\/(?:vim-)?(.*?)(?:[-\.]vim)?$/, '\1').downcase + name = author_slash_name.gsub(/^.*\/(?:vim-)?(.*?)(?:[-\.]vim)?(?:-theme)?$/, '\1').downcase src = "git://github.com/#{author_slash_name}.git" desc = "_vim/bundle/#{name}"