Merge pull request #2602 from saftacatalinmihai/scala-dev-env

Added Scala to the Deveopment Omarchy Menu and implementation
This commit is contained in:
David Heinemeier Hansson
2026-02-20 20:20:45 +01:00
committed by GitHub
2 changed files with 8 additions and 2 deletions
+6 -1
View File
@@ -3,7 +3,7 @@
# Install one of the supported development environments. Usually called via Install > Development > * in the Omarchy Menu.
if [[ -z "$1" ]]; then
echo "Usage: omarchy-install-dev-env <ruby|node|bun|go|laravel|symfony|php|python|elixir|phoenix|rust|java|ocaml|dotnet|clojure>" >&2
echo "Usage: omarchy-install-dev-env <ruby|node|bun|go|laravel|symfony|php|python|elixir|phoenix|rust|java|ocaml|dotnet|clojure|scala>" >&2
exit 1
fi
@@ -141,4 +141,9 @@ clojure)
omarchy-pkg-add rlwrap
mise use --global clojure@latest
;;
scala)
echo -e "Installing Scala...\n"
mise use --global scala@latest
mise use --global scala-cli@latest
;;
esac