Checkpoint / the simplest test looks to be working now (~/.vimrc)
[vagrant-dotfiles.git] / lib / copy_my_conf / config.rb
diff --git a/lib/copy_my_conf/config.rb b/lib/copy_my_conf/config.rb
deleted file mode 100644 (file)
index a1e51e6..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-require_relative "git"
-require_relative "ssh"
-require_relative "vim"
-
-module CopyMyConf
-  class Config < Vagrant.plugin("2", :config)
-    attr_accessor :user_home
-
-    def git
-      @git ||= CopyMyConf::Git.new
-    end
-
-    def vim
-      @vim ||= CopyMyConf::Vim.new
-    end
-
-    def ssh
-      @ssh ||=CopyMyConf::Ssh.new
-    end
-
-    def all_enabled_attributes
-      [@ssh, @vim, @git].compact
-    end
-  end
-end
-