config.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [tools]
  2. usage = "latest"
  3. [settings]
  4. # plugins can read the versions files used by other version managers (if enabled by the plugin)
  5. # for example, .nvmrc in the case of node's nvm
  6. legacy_version_file = true # enabled by default (unlike asdf)
  7. # configure `mise install` to always keep the downloaded archive
  8. always_keep_download = false # deleted after install by default
  9. always_keep_install = false # deleted on failure by default
  10. # configure how frequently (in minutes) to fetch updated plugin repository changes
  11. # this is updated whenever a new runtime is installed
  12. # (note: this isn't currently implemented but there are plans to add it: https://github.com/jdx/mise/issues/128)
  13. plugin_autoupdate_last_check_duration = '1 week' # set to 0 to disable updates
  14. # config files with these prefixes will be trusted by default
  15. trusted_config_paths = []
  16. verbose = false # set to true to see full installation output, see `MISE_VERBOSE`
  17. asdf_compat = false # set to true to ensure .tool-versions will be compatible with asdf, see `MISE_ASDF_COMPAT`
  18. #http_timeout = 30 # set the timeout for http requests in seconds, see `MISE_HTTP_TIMEOUT`
  19. jobs = 4 # number of plugins or runtimes to install in parallel. The default is `4`.
  20. raw = false # set to true to directly pipe plugins to stdin/stdout/stderr
  21. yes = false # set to true to automatically answer yes to all prompts
  22. not_found_auto_install = true # see MISE_NOT_FOUND_AUTO_INSTALL
  23. task_output = "prefix" # see Tasks Runner for more information
  24. paranoid = false # see MISE_PARANOID
  25. env_file = '.env' # load env vars from a dotenv file, see `MISE_ENV_FILE`
  26. experimental = true # enable experimental features
  27. # configure messages displayed when entering directories with config files
  28. status = { missing_tools = "if_other_versions_installed", show_env = false, show_tools = false }
  29. idiomatic_version_file_enable_tools = ["node"]