Add vim install option.

This commit is contained in:
2014-11-19 15:40:02 -08:00
parent 7ab9589867
commit 2b6029548c
2 changed files with 221 additions and 0 deletions

View File

@@ -18,6 +18,16 @@ def setup(ctx):
install_powerline_monaco(ctx)
osx_config(ctx)
@ctask
def macvim(ctx):
macvim_install = (
"macvim --override-system-vim --custom-system-icons "
"--with-features=huge --enable-rubyinterp --enable-pythoninterp "
"--enable-perlinterp --enable-cscope"
)
ctx.run("brew install {0}".format(macvim_install))
ctx.run("vim +BundleInstall! +q +q")
@ctask
def osx_config(ctx):