From aa1dbddf971ccc09b92765ba1e2b0dc45d87d069 Mon Sep 17 00:00:00 2001 From: jason Date: Sun, 8 Nov 2020 21:31:31 -0700 Subject: enable flutter bin if it exists --- bash/.bashrc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bash') diff --git a/bash/.bashrc b/bash/.bashrc index 1d61ecd..f3b14e9 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -1,6 +1,11 @@ PS1="[\u@\[\e[38;5;148m\]\h\[\e[m\]:\[\e[36m\]\W\[\e[m\]\[\e[m\]]\[\e[m\]\$\[\e[m\] " PATH="${HOME}/bin:${PATH}" +# Enable flutter +if [ -d $HOME/bin/flutter/ ]; then + PATH="${HOME}/bin/flutter/bin:${PATH}" +fi + TERM="xterm-256color" # direnv's use_nix will overwrite TMPDIR so it needs to be hard coded to /tmp/ -- cgit v1.2.1