imagrc.toml 795 B

123456789101112131415161718192021222324252627282930313233343536
  1. # This is a example configuration file for the imag suite.
  2. # It is written in TOML
  3. #
  4. # Configuration options for the user interface
  5. #
  6. [ui]
  7. #
  8. # Configuration options for the commandline user interface
  9. #
  10. [ui.cli]
  11. # History file path for readline. Will be created by imag if it does not exist.
  12. readline_history_file = "/tmp/readline.history"
  13. # Number of lines to safe in the history file
  14. readline_history_size = 100
  15. # Ignore duplicated lines
  16. readline_history_ignore_dups = true
  17. # Tell if lines which begin with a space character are saved or not in the
  18. # history list.
  19. readline_history_ignore_space = true
  20. # The prompt string to use
  21. readline_prompt = ">> "
  22. [store]
  23. # Set to false if you do not want imag to create the directory where the store
  24. # lives implicitely
  25. implicit-create = false