# File lib/vimmatelib/config.rb, line 70
    def initialize
      # Set the full path to the configuration file. In the user's
      # HOME or the current directory
      if ENV['HOME']
        self.class.const_set(:FILENAME, File.join(ENV['HOME'], BASE_FILENAME))
      else
        self.class.const_set(:FILENAME, BASE_FILENAME)
      end
      @config = DEFAULT_CONFIG.dup
    end