From d3c139a1e57d7554af9966cd15037b4e70273f53 Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 26 Apr 2023 17:22:09 +0200 Subject: [PATCH] Add flutter, new jetbrains launch method needed --- bash_profile.d/00_base.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/bash_profile.d/00_base.sh b/bash_profile.d/00_base.sh index e838245..457c778 100644 --- a/bash_profile.d/00_base.sh +++ b/bash_profile.d/00_base.sh @@ -17,13 +17,18 @@ if [ $(uname) == "Darwin" ]; then { export PATH=/opt/local/bin:/opt/local/sbin:$PATH #cmake export PATH="/Applications/CMake.app/Contents/bin":$PATH + + # JetBrains launchers + function idea() { '/Applications/IntelliJ IDEA CE.app/Contents/MacOS/idea' $1 &>/dev/null & } } fi ## PATH #rust export PATH="$HOME/.cargo/bin:$PATH" -#yml2 -#export PATH=$PATH:$HOME/src/yml2/ +A +#flutter +export PATH="$HOME/src/flutter-sdk/bin/:$PATH" + #The USER scripts (my scripts) :) export PATH=$PATH:"$HOME/HeckBashSetup/scripts"