forked from henrik/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bash_profile
executable file
·36 lines (23 loc) · 974 Bytes
/
bash_profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
#[[ -s "$HOME/.bs/profile" ]] && source "$HOME/.bs/profile"
# Fix "Sorry, command-not-found has crashed!" on Ubuntu in Vagrant.
# # http://superuser.com/a/468792
unset command_not_found_handle
source ~/.bash/path.sh
source ~/.bash/env.sh
source ~/.bash/completion.sh
source ~/.bash/aliases.sh
source ~/.bash/functions.sh
source ~/.bash/prompt.sh
[[ -s "$HOME/.local_aliases" ]] && source "$HOME/.local_aliases"
#export WMSJAVA_HOME="/Library/WowzaStreamingEngine-4.6.0/java"
# Adds Keychain credentials in ssh-agent
[[ $OSTYPE =~ "darwin" ]] && ssh-add -K
export PATH=/usr/local/bin:$PATH
export PATH=/usr/local/share/python:$PATH
#[[ $OSTYPE =~ "darwin" ]] && export PATH=$HOME/.flutter/current/bin:$PATH
#source ~/.bashrc
source ~/.shell_local
source "/opt/devbox/cargo/env"
# source /home/albertramstedt/.config/broot/launcher/bash/br
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile"