Basic shell setup for flutter development

This commit is contained in:
2019-06-14 19:40:46 +01:00
parent 920985b554
commit 1f9e028fac
2 changed files with 13 additions and 0 deletions

12
zsh/flutter.zsh Normal file
View File

@@ -0,0 +1,12 @@
#
# Flutter environment setup
#
if [ -d "/opt/flutter/bin" ]; then
path_append "/opt/flutter/bin"
alias fl="flutter"
if [ -d "/opt/flutter/bin/cache/dart-sdk/bin" ]; then
path_append "/opt/flutter/bin/cache/dart-sdk/bin"
fi
fi

View File

@@ -119,6 +119,7 @@ source "$DOTZSH/tmux.zsh"
# Development
source "$DOTZSH/android-sdk.zsh"
source "$DOTZSH/docker.zsh"
source "$DOTZSH/flutter.zsh"
source "$DOTZSH/golang.zsh"
source "$DOTZSH/google-cloud.zsh"
source "$DOTZSH/kubernetes.zsh"