aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorjason2020-11-08 21:31:31 -0700
committerjason2020-11-08 21:31:31 -0700
commitaa1dbddf971ccc09b92765ba1e2b0dc45d87d069 (patch)
tree350a7744f9dfeb1baaa94b081445fb4870572f64 /bash
parentada67bf93ae13d947f4d2370fb943ddb74076ac2 (diff)
downloaddotfiles-aa1dbddf971ccc09b92765ba1e2b0dc45d87d069.tar.gz
dotfiles-aa1dbddf971ccc09b92765ba1e2b0dc45d87d069.zip
enable flutter bin if it exists
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 1d61ecd..f3b14e9 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -1,6 +1,11 @@
1PS1="[\u@\[\e[38;5;148m\]\h\[\e[m\]:\[\e[36m\]\W\[\e[m\]\[\e[m\]]\[\e[m\]\$\[\e[m\] " 1PS1="[\u@\[\e[38;5;148m\]\h\[\e[m\]:\[\e[36m\]\W\[\e[m\]\[\e[m\]]\[\e[m\]\$\[\e[m\] "
2PATH="${HOME}/bin:${PATH}" 2PATH="${HOME}/bin:${PATH}"
3 3
4# Enable flutter
5if [ -d $HOME/bin/flutter/ ]; then
6 PATH="${HOME}/bin/flutter/bin:${PATH}"
7fi
8
4TERM="xterm-256color" 9TERM="xterm-256color"
5 10
6# direnv's use_nix will overwrite TMPDIR so it needs to be hard coded to /tmp/ 11# direnv's use_nix will overwrite TMPDIR so it needs to be hard coded to /tmp/