Checkpoint / the simplest test looks to be working now (~/.vimrc)
[vagrant-dotfiles.git] / lib / copy_my_conf / vim.rb
diff --git a/lib/copy_my_conf/vim.rb b/lib/copy_my_conf/vim.rb
deleted file mode 100644 (file)
index b7c55bd..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-module CopyMyConf
-  class Vim
-    def prepare vm, tmp_root
-      `mkdir -p #{tmp_root}/vim`
-      ["~/.vimrc", "~/.vim"].each do |file|
-        `cp -r #{file} #{tmp_root}/vim`
-      end
-      vm.synced_folder("#{tmp_root}/vim", "#{tmp_root}/vim", :id => "vim")
-    end
-
-    def provision channel, user_home, tmp_root
-      puts "Copying your vim configuratios"
-      channel.execute("rm -rf #{user_home}/.vim*")
-      channel.execute("cp -r #{tmp_root}/vim/.??* ~/")
-    end
-  end
-end