diff options
| author | jason | 2020-11-08 21:31:31 -0700 |
|---|---|---|
| committer | jason | 2020-11-08 21:31:31 -0700 |
| commit | aa1dbddf971ccc09b92765ba1e2b0dc45d87d069 (patch) | |
| tree | 350a7744f9dfeb1baaa94b081445fb4870572f64 /bash | |
| parent | ada67bf93ae13d947f4d2370fb943ddb74076ac2 (diff) | |
| download | dotfiles-aa1dbddf971ccc09b92765ba1e2b0dc45d87d069.tar.gz dotfiles-aa1dbddf971ccc09b92765ba1e2b0dc45d87d069.zip | |
enable flutter bin if it exists
Diffstat (limited to 'bash')
| -rw-r--r-- | bash/.bashrc | 5 |
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 @@ | |||
| 1 | PS1="[\u@\[\e[38;5;148m\]\h\[\e[m\]:\[\e[36m\]\W\[\e[m\]\[\e[m\]]\[\e[m\]\$\[\e[m\] " | 1 | PS1="[\u@\[\e[38;5;148m\]\h\[\e[m\]:\[\e[36m\]\W\[\e[m\]\[\e[m\]]\[\e[m\]\$\[\e[m\] " |
| 2 | PATH="${HOME}/bin:${PATH}" | 2 | PATH="${HOME}/bin:${PATH}" |
| 3 | 3 | ||
| 4 | # Enable flutter | ||
| 5 | if [ -d $HOME/bin/flutter/ ]; then | ||
| 6 | PATH="${HOME}/bin/flutter/bin:${PATH}" | ||
| 7 | fi | ||
| 8 | |||
| 4 | TERM="xterm-256color" | 9 | TERM="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/ |