# @references:
#   https://mamba.readthedocs.io/en/latest/user_guide/configuration.html
#   https://docs.conda.io/projects/conda/en/latest/user-guide/configuration/use-condarc.html

# Prioritize channels, using strict channel priority
channel-priority: strict

# Specify the default channels to search for packages
channels:
  - conda-forge
  - defaults
  #- bioconda

#
always_yes: false

# Do not use the "defaults" channel from Anaconda
nodefaults: true

# Set a specific path for environments (optional, default is usually fine)
envs_dirs:
  - ~/.mamba/envs

# Set a specific path for package cache (optional)
pkgs_dirs:
  - ~/.mamba/pkgs

# Other common settings
# always_yes: true  # Automatically say yes to all prompts
show_channel_urls: true # Display channel URLs in the output

auto_activate_base: false
