diff options
| author | Simen A. W. Olsen <so@bjerk.io> | 2020-11-21 14:01:35 +0100 |
|---|---|---|
| committer | Simen A. W. Olsen <so@bjerk.io> | 2020-11-21 14:01:35 +0100 |
| commit | decd709def67526c270e37d888693d5ef6dca990 (patch) | |
| tree | 70cdfbd138ce96c96d12ccd0cbbfebc4ba6efea0 /.bash_profile | |
| parent | 41e96227e712ce1094c78c7c57d64f5df61b3327 (diff) | |
| download | dotfiles-decd709def67526c270e37d888693d5ef6dca990.tar.gz dotfiles-decd709def67526c270e37d888693d5ef6dca990.zip | |
a bunch of additions
Diffstat (limited to '.bash_profile')
| -rw-r--r-- | .bash_profile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.bash_profile b/.bash_profile index 3659ef5..00c32ad 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,6 +1,12 @@ # branches and stuff in my SH PS1='\w\[\033[0;32m\]$( git branch 2> /dev/null | cut -f2 -d\* -s | sed "s/^ / [/" | sed "s/$/]/" )\[\033[0m\] \$ ' +# Load .bashrc, which loads: ~/.{bash_prompt,aliases,functions,path,dockerfunc,extra,exports} +if [[ -r "${HOME}/.bashrc" ]]; then + # shellcheck source=/dev/null + source "${HOME}/.bashrc" +fi + # Tell grep to highlight matches export GREP_OPTIONS='--color=auto' @@ -8,10 +14,6 @@ export GREP_OPTIONS='--color=auto' export CLICOLOR=1 export LSCOLORS=Exfxcxdxbxegedabagacad -alias l='ls -l' -# Add VSCode to PATH -export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" - # Volta export VOLTA_HOME="$HOME/.volta" export PATH="$VOLTA_HOME/bin:$PATH" |
