1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Define pre-requirements for installing vim

This commit is contained in:
Holger Just 2014-05-14 17:21:51 +02:00
parent 15bacd87ef
commit 1c049ff1a2

View File

@ -24,5 +24,10 @@ namespace :install do
files :bin, "bin/*"
files :vim, *%w[.vim .vimrc]
end
task :vim => [:dot, :bin, :submodules]
desc "Update all submodules"
task :submodules do
sh "git submodule update --init"
end
end