class VomiCore::VomiConfig

Configurations of Vomi

Attributes

common[RW]

common and basic cli options

vomi_internal[RW]

Vomi internal configs

Public Class Methods

new() click to toggle source

Load default configs

# File lib/vomi/config.rb, line 13
def initialize

  @common = {
      current_dir: nil
  }

  @vomi_internal = {
      # terminal related
      terminal: {
          true_color?: false
      },

      # logging
      log: {
          enabled?: true,
          output_dir: nil
      }
  }

end