Merge pull request #368 from afonsomm/julia

Add the julia programming language
This commit is contained in:
David Heinemeier Hansson
2025-02-04 15:05:12 +01:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
if [[ -v OMAKUB_FIRST_RUN_LANGUAGES ]]; then
languages=$OMAKUB_FIRST_RUN_LANGUAGES
else
AVAILABLE_LANGUAGES=("Ruby on Rails" "Node.js" "Go" "PHP" "Python" "Elixir" "Rust" "Java")
AVAILABLE_LANGUAGES=("Ruby on Rails" "Node.js" "Go" "PHP" "Python" "Julia" "Elixir" "Rust" "Java")
languages=$(gum choose "${AVAILABLE_LANGUAGES[@]}" --no-limit --height 10 --header "Select programming languages")
fi
@@ -29,6 +29,9 @@ if [[ -n "$languages" ]]; then
Python)
mise use --global python@latest
;;
Julia)
bash -c "$(curl -fsSL https://install.julialang.org)" -- -y
;;
Elixir)
mise use --global erlang@latest
mise use --global elixir@latest