Checkpoint / the simplest test looks to be working now (~/.vimrc)
[vagrant-dotfiles.git] / lib / config.rb
diff --git a/lib/config.rb b/lib/config.rb
new file mode 100644 (file)
index 0000000..27257a7
--- /dev/null
@@ -0,0 +1,18 @@
+
+module VagrantPlugins
+  module VagrantDotfiles
+    class Config < Vagrant.plugin("2", :config)
+      attr_accessor :user_home
+
+      def initialize
+        @user_home = UNSET_VALUE
+      end
+
+      def finalize!
+        @user_home = '/home/vagrant' if @user_home == UNSET_VALUE
+      end
+
+    end # class
+  end # module vdt
+end # module vp
+