pathogen bootstrap and other things

This commit is contained in:
John Bintz 2011-11-03 10:21:57 -04:00
parent fd8e3b6e50
commit 9ec7b21acc
2 changed files with 28 additions and 0 deletions

View File

@ -3,6 +3,7 @@
require 'thor'
require 'pathname'
require 'rainbow'
require 'httparty'
class MacVimBuddy < Thor
desc "build-from-git", "Build the latest MacVim HEAD from GitHub"
@ -72,6 +73,32 @@ GIT
end
end
desc "pathogen bootstrap", "Bootstrap your .vimrc with pathogen"
def bootstrap
system %{bash -c "cd ~ && mkdir -p .vim/autoload .vim/bundle"}
File.open(File.expand_path('~/.vim/autoload/pathogen.vim'), 'wb') { |fh|
fh.print HTTParty.get('https://raw.github.com/tpope/vim-pathogen/HEAD/autoload/pathogen.vim').body
}
if !File.file?(vimrc = File.expand_path('~/.vimrc'))
vimrc_content = <<-VIM
call pathogen#infect()
syntax on
filetype plugin indent on
VIM
else
vimrc_content = File.read(vimrc)
if !vimrc_content['call pathogen#infect()']
vimrc_content = "call pathogen#infect()\n#{vimrc_content}"
end
end
File.open(vimrc, 'wb') { |fh| fh.print vimrc_content }
puts "Pathogen installed into your .vimrc"
end
desc "pathogen install GIT_REPO", "Install a plugin from a git repo"
def install(git_repo)
ensure_bundle

View File

@ -22,5 +22,6 @@ Gem::Specification.new do |s|
# s.add_development_dependency "rspec"
s.add_runtime_dependency "thor"
s.add_runtime_dependency "rainbow"
s.add_runtime_dependency "httparty"
end