# File lib/hammer_cli/settings.rb, line 36
    def self.load_from_file(file_path)
      if File.file? file_path
        config = YAML::load(File.open(file_path))
        if config
          load(config)
          path_history << file_path
        end
      end
    end