Skip to content

Instantly share code, notes, and snippets.

Created December 8, 2013 06:31
Show Gist options
  • Select an option

  • Save anonymous/7853966 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/7853966 to your computer and use it in GitHub Desktop.
PWD=`/bin/pwd`
all:
@echo '... INSTALL NEOBUNDLE ...'
@git clone git://github.com/Shougo/neobundle.vim $(PWD)/bundle/neobundle.vim
@echo '... DONE! NOW USE "make install" INSTALL VIM SETTING ...'
install:
@echo '... INSTALL VIM SETTING ...'
@ln -fs $(PWD)/_vimrc $(HOME)/.vimrc
@ln -fs $(PWD)/_gvimrc $(HOME)/.gvimrc
@vim -c NeoBundleInstall
@echo '... DONE! ...'
backup:
@echo '... BACKUP VIM SETTING ...'
@tar zcvf $(PWD)/../vim_config.tar.gz {Makefile,README.mkd,_gvimrc,_vimrc,colors/,vimswap/}
@echo '... DONE! ...'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment